Closed kolman closed 9 years ago
Consider this code:
(clojure.string/split "abc(123)" #"\(")
Trying to evaluate it using cpp causes error:
Error detected while processing function 53_printop..53_opfunc: line 21: E20: Mark not set
Workarounds:
(clojure.string/split "abc(123)" (re-pattern "\\("))
Consider this code:
Trying to evaluate it using cpp causes error:
Workarounds: