Files
gyehoek-hs/wit-test/gyehoek.wit
T
2026-08-24 06:58:16 -06:00

16 lines
236 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 {
import runtime;
export program;
}