9 lines
285 B
WebAssembly Text Format
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)))
|