delete guileslop and add haskellslop

This commit is contained in:
2026-07-17 14:11:50 -06:00
parent d3cf938eb3
commit 388363397a
27 changed files with 143 additions and 28 deletions
@@ -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;
}