This commit is contained in:
2026-06-21 23:55:17 -06:00
commit ef5362cc25
13 changed files with 167 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package demo:importing@0.1.0;
interface provider {
get: func () -> u32;
}
interface adder {
add: func (other: u32) -> u32;
mul: func (other: u32) -> u32;
}
world example {
import provider;
export adder;
}