SHS/cmd/shsh/shsh.go
2019-11-28 22:43:30 -08:00

14 lines
226 B
Go

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