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/README.md

387 B

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