way better lex function

This commit is contained in:
Aidan Hahn 2019-11-28 22:43:30 -08:00
parent 6f7adc0789
commit 65cecb3647
No known key found for this signature in database
GPG key ID: 327711E983899316
7 changed files with 60 additions and 37 deletions

View file

@ -9,6 +9,6 @@ import (
func main() {
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
PrintSExpression(Lex(scanner.Text()))
shsh.PrintSExpression(shsh.Lex(scanner.Text()))
}
}