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,12 @@
(module
(import "demo:importing/provider@0.1.0" "get" (func $get (result i32)))
(func $add (param $other i32) (result i32)
call $get
local.get $other
i32.add)
(func $mul (param $other i32) (result i32)
call $get
local.get $other
i32.mul)
(export "demo:importing/adder@0.1.0#add" (func $add))
(export "demo:importing/adder@0.1.0#mul" (func $mul)))