14 lines
216 B
Go
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()))
|
|
}
|
|
}
|