Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
189B

  1. # #} -> }
  2. s|#}|}|
  3. # # -> //
  4. s|#|//|
  5. # dict[X, Y] -> std::map<X, Y>
  6. s_dict\[(.*), (.*)\]_std::map<\1, \2>_
  7. # def functionName(X) -> Y -> Y functionName(X) {
  8. s|def (.*) -> (.*):|\2 \1 {|