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

20 lines
291 B
Plaintext

package gyehoek:gyehoek@0.1.0;
interface runtime {
resource scm {
make-small-int: static func(n: s32) -> scm;
}
}
interface program {
run: func() -> s32;
}
world gyehoek-runtime {
export runtime;
}
world gyehoek-program {
import runtime;
export program;
}