summaryrefslogtreecommitdiff
path: root/examples/wasm/helloworld.wat
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wasm/helloworld.wat')
-rw-r--r--examples/wasm/helloworld.wat15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/wasm/helloworld.wat b/examples/wasm/helloworld.wat
deleted file mode 100644
index b74c98f..0000000
--- a/examples/wasm/helloworld.wat
+++ /dev/null
@@ -1,15 +0,0 @@
-(module
- ;; Imports from JavaScript namespace
- (import "console" "log" (func $log (param i32 i32))) ;; Import log function
- (import "js" "mem" (memory 1)) ;; Import 1 page of memory (54kb)
-
- ;; Data section of our module
- (data (i32.const 0) "Hello World from WebAssembly!")
-
- ;; Function declaration: Exported as helloWorld(), no arguments
- (func (export "helloWorld")
- i32.const 0 ;; pass offset 0 to log
- i32.const 29 ;; pass length 29 to log (strlen of sample text)
- call $log
- )
-) \ No newline at end of file