mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-14 08:25:02 +01:00
7 lines
216 B
Text
7 lines
216 B
Text
import ("wasi_snapshot_preview1" "fd_write")
|
|
fd_write(fd: I32, ciovec_ptr: I32, ciovec_len: I32, out_ptr: I32): I32;
|
|
|
|
function print(s: String) = (
|
|
// TODO: do it
|
|
let _s: (I32, I32) = ___transmute(s);
|
|
);
|