Files
curlywas/examples/wasm4/hello.cwa

10 lines
153 B
Plaintext

import "env.memory" memory(1);
import "env.text" fn text(i32, i32, i32);
export fn update() {
text(0x3f, 8, 8);
}
data 0x3f {
"Hello, World!"
}