blob: a35c605dbd61b3a63bab501c7e38e6f98042fa43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(module
(import "env" "memoryBase" (global $memoryBase i32))
(import "env" "tableBase" (global $tableBase i32))
(import "env" "memory" (memory $0 256))
(import "env" "table" (table 0 funcref))
(elem (global.get $tableBase) $foo)
(data (global.get $memoryBase) "hello, this is some data!")
(func $foo
(drop (global.get $tableBase))
(drop (global.get $memoryBase))
)
)
|