You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wasm3/test/wasi/mal
Volodymyr Shymanskyy 22d0211957
WASI test fixes
3 years ago
..
.gitattributes WASI test fixes 3 years ago
README.md Restructure tests 3 years ago
core.mal Restructure tests 3 years ago
env.mal Restructure tests 3 years ago
mal.mal Restructure tests 3 years ago
mal.wasm Restructure tests 3 years ago
test-fib.mal Restructure tests 3 years ago

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