Files
scratch-wasm/examples/wat/runtime/program.wat
T
2026-08-24 08:25:07 -06:00

9 lines
285 B
WebAssembly Text Format

(module
(import "gyehoek:gyehoek/runtime@0.1.0"
"[static]scm.make-small-int"
(func $make-small-int (param i32) (result i32)))
(func $run (result i32)
(call $make-small-int (i32.const 123)))
(export "gyehoek:gyehoek/program@0.1.0#run"
(func $run)))