new eval.go

This commit is contained in:
Aidan 2020-06-29 00:06:53 -07:00
parent 89d6a1013b
commit 2a2e5b4527
No known key found for this signature in database
GPG key ID: 327711E983899316
15 changed files with 382 additions and 1215 deletions

View file

@ -20,10 +20,9 @@ package main
import (
"strings"
"os"
"gitlab.com/whom/shs/log"
"gitlab.com/whom/shs/ast"
)
func main() {
log.PrintSExprsIndividually(ast.Lex(strings.Join(os.Args[1:], " ")))
ast.PrintSExprsIndividually(ast.Lex(strings.Join(os.Args[1:], " ")))
}