jank-lang / jank

The native Clojure dialect hosted on LLVM
https://jank-lang.org
Mozilla Public License 2.0
1.69k stars 50 forks source link

Support all simple string escape sequences #97

Closed jeaye closed 1 month ago

jeaye commented 1 month ago

Currently, we support only \n and \t properly. We have partial support for \r, too. Let's support all of the simple escape sequences listed here: https://en.cppreference.com/w/cpp/language/escape

jianlingzhong commented 1 month ago

started with a simple pr first: https://github.com/jank-lang/jank/pull/101