Martin Fouilleul 17c0f02962 | ||
---|---|---|
.. | ||
.gitattributes | ||
README.md | ||
core.mal | ||
env.mal | ||
mal.mal | ||
test-fib.mal |
README.md
mal (Make a Lisp)
mal is a Lisp interpreter.
Running
# REPL:
../../../build/wasm3 mal.wasm
# Self-hosted REPL:
../../../build/wasm3 mal.wasm ./mal.mal
# Fibonacci test:
../../../build/wasm3 mal.wasm ./test-fib.mal 16
987
# Self-hosted Fibonacci test (takes ~10 seconds):
../../../build/wasm3 mal.wasm ./mal.mal ./test-fib.mal 10
55