7 lines
143 B
WebAssembly Text Format
7 lines
143 B
WebAssembly Text Format
(module
|
|
(import "gyehoek" "say-hi" (func $say-hi))
|
|
(func (export "main")
|
|
(call $say-hi)
|
|
(call $say-hi)
|
|
(call $say-hi)))
|