SHS/cmd/shsh/shsh.go
Aidan Hahn 6f7adc0789
sync
:
2019-11-28 20:24:50 -08:00

14 lines
216 B
Go

package main
import (
"bufio"
"os"
"git.callpipe.com/aidan/shsh"
)
func main() {
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
PrintSExpression(Lex(scanner.Text()))
}
}