This commit is contained in:
2026-08-24 08:25:07 -06:00
parent 540a44e148
commit f2c5d2f3ee
10 changed files with 134 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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;
}