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.

16 lines
294B

  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 {|
  9. s|memory_Context (.*)\(|memory_Context \1(memory_Context);|
  10. s|std::string (.*)\(|std::string \1();|