It builds
This commit is contained in:
parent
7aa80376bb
commit
7e175dec95
7 changed files with 52 additions and 45 deletions
|
|
@ -0,0 +1,14 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"os"
|
||||
"shsh"
|
||||
)
|
||||
|
||||
func main() {
|
||||
scanner := bufio.NewScanner(os.Stdin)
|
||||
for scanner.Scan() {
|
||||
PrintSExpression(Lex(scanner.Text()))
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue