replete-repl / replete-ios

ClojureScript REPL iOS app
Eclipse Public License 1.0
395 stars 25 forks source link

re-seq error #67

Closed ghufransyed closed 8 years ago

ghufransyed commented 9 years ago

Version 1.0(14)

(re-seq #"jam" "I like jam in my jam ")

Invalid escape in identifier: '\' eval@[native code] file:///replete/core.js:206:111 replete$core$read_eval_print@file:///replete/core.js:225:3

(doc re-seq)

cljs.core/re-seq ([re s]) Returns a lazy sequence of successive matches of re in s.

(re-seq #"bl" "bl" ) Invalid escape in identifier: '\' eval@[native code] file:///replete/core.js:206:111 replete$core$read_eval_print@file:///replete/core.js:225:3

mfikes commented 9 years ago

Thanks! The version in dev has been updated to use 1.7.28 and returns:

("jam" "jam")
("bl")
mfikes commented 8 years ago

Fixed.