1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
(module (start $start) (func $start (export "start") (drop (i32.const 1) ) ) (func $user (export "user") ;; These calls must go to the function $start here (with body "1"). (call $start) (call $start) ) )