really bad minimal scheme compiler
Go to file
milo 7cbcaf8ccd add readme, gitignore 2025-09-26 14:22:46 -04:00
.gitignore add readme, gitignore 2025-09-26 14:22:46 -04:00
Makefile write compiler 2025-09-26 14:18:52 -04:00
README.md add readme, gitignore 2025-09-26 14:22:46 -04:00
input.scm write compiler 2025-09-26 14:18:52 -04:00
scm2wasm.c write compiler 2025-09-26 14:18:52 -04:00

README.md

scm2wasm

really bad minimal scheme compiler

building

$ make

running

$ ./scm2wasm < input.scm > output.wasm
$ wasm-tools validate output.wasm
$ wasm-tools print output.wasm -o output.wat
$ wasmtime -Wgc --invoke start output.wasm
...
30