summaryrefslogtreecommitdiff
path: root/examples/wasm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wasm')
-rw-r--r--examples/wasm/add.wat3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/wasm/add.wat b/examples/wasm/add.wat
index a246245..b5e1f3a 100644
--- a/examples/wasm/add.wat
+++ b/examples/wasm/add.wat
@@ -1,4 +1,3 @@
-;; name: add ; description: add two numbers
(module
(func $add (export "add") (param $a i32) (param $b i32) (result i32)
local.get $a
@@ -10,5 +9,3 @@
local.get $b
i64.add)
)
-
-