EVA is an AST interpreter. The name EVA comes from eval (evaluation) because the core of the interpreter is evaluation.
yarn install && yarn test
# Run expression
./bin/eva -e '(print (+ 1 1))'
# Run file
./bin/eva -f ./bin/test.eva
EVA is an AST interpreter. The name EVA comes from eval (evaluation) because the core of the interpreter is evaluation.
yarn install && yarn test
# Run expression
./bin/eva -e '(print (+ 1 1))'
# Run file
./bin/eva -f ./bin/test.eva