Try to lex identifiers and parens

This commit is contained in:
Eryn Wells 2016-12-19 09:46:58 -08:00
parent 59e55a39e4
commit ed27494783
3 changed files with 21 additions and 9 deletions

View file

@ -8,7 +8,7 @@
import Foundation
let l = Lexer(input: "(())")
let l = Lexer(input: "((abc))")
for t in l {
print(t)
}