Add support for string constants with escape sequences

This commit is contained in:
jonathandturner
2016-03-02 08:37:28 -05:00
parent 1320a35c81
commit 2bba8dc429
4 changed files with 136 additions and 32 deletions

View File

@@ -13,7 +13,14 @@ mod parser;
// Todo (in no particular order):
// * Doc some examples
// * String constants
// * Hello world
// * Functions and methods
// * Registering types
// * Maintaining state
// * Overloading
// * How it works
// * Arity to 10?
// * Better error handling in lexer
// * Remove empty box values?
fn showit<T: Display>(x: &mut T) -> () {