From d9e3f24146c8ddad86572c57283b3a91b33a6945 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 22 Apr 2017 12:30:15 -0700 Subject: [PATCH] TODO about using str.chars() instead of my own janky character iteration stuff --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e543845..1fbf6dc 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,8 @@ exhaustive, though I will continue to add to it as I think of things... ### `sibillexer` -- The lexer - [ ] Make the Lexer Peekable +- [ ] Use character iterators (`str.chars()`) instead of my own code to iterate + through characters in the input - [ ] Rational numbers - [ ] Complex numbers - [ ] Quasiquotes (this is not context free apparently, so I expect Badness)