0061736D01000000010A026000006002
7F7F017F030302000104050170010101
05030100020615037F01418088040B7F
00418088040B7F004180080B072B0406
6D656D6F727902000B5F5F686561705F
6261736503010A5F5F646174615F656E
6403020361646400010A0C0202000B07
00200120006A0B0020046E616D650119
0200115F5F7761736D5F63616C6C5F63
746F72730103616464
#define WASM_EXPORT
__attribute__((visibility("default")))
WASM_EXPORT
int add(int a, int b) { return a + b; }
#[no_mangle]
pub extern
fn add(x: i32, y: i32) -> i32 { x + y }
export function add(x: i32, y: i32): i32 {
return x + y;
}