wasm_emit_main.c (115B)
1 extern int tier1_wasm_add(int a, int b); 2 3 int test_main(void) { 4 return tier1_wasm_add(20, 22) == 42 ? 0 : 1; 5 }