I'd like to do something like this, but the semi-colon added at the beginning of the statement causes a syntax error: ```js ;(async () => { const { addOne } = await instantiateWasm(rust` #[no_mangle] pub fn addOne(x: i32) -> i32 { x + 1 } `) })() ```