diff options
Diffstat (limited to 'test/hello_world.wat')
-rw-r--r-- | test/hello_world.wat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hello_world.wat b/test/hello_world.wat index cbe9cb5ae..680ee809a 100644 --- a/test/hello_world.wat +++ b/test/hello_world.wat @@ -2,7 +2,7 @@ (type $i32_i32_=>_i32 (func (param i32 i32) (result i32))) (memory $0 256 256) (export "add" (func $add)) - (func $add (; 0 ;) (param $x i32) (param $y i32) (result i32) + (func $add (param $x i32) (param $y i32) (result i32) (i32.add (local.get $x) (local.get $y) |