It builds

This commit is contained in:
Aidan Hahn 2019-11-28 20:07:28 -08:00
parent 7aa80376bb
commit 7e175dec95
No known key found for this signature in database
GPG key ID: 327711E983899316
7 changed files with 52 additions and 45 deletions

View file

@ -0,0 +1,14 @@
package main
import (
"bufio"
"os"
"shsh"
)
func main() {
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
PrintSExpression(Lex(scanner.Text()))
}
}