1export function hello_world(arg: u32): u32 { 2 trace("hello world", 2, arg + 0.1, arg + 0.2); 3 return arg + 3; 4} 5 6export function goodbye_world(): void { 7 throw new Error("sad sad world"); 8}
View as plain text