Replies: 3 comments
-
I'll transfer this to a discussion. |
Beta Was this translation helpful? Give feedback.
-
Ok. Thanks. |
Beta Was this translation helpful? Give feedback.
-
https://deno.land/[email protected]/getting_started/webassembly there is the docs with using Wasm with Deno, you would basically just take your |
Beta Was this translation helpful? Give feedback.
-
Hi,
I would like to write code using Grain, convert the code to WebAssembly, and finally use the WebAssembly code in Deno.
Let's say I have a Grain module
is-even.gr
with the following code:I would like to be able to transpile the code to a wasm file that is compatible with Deno. I would like to use the wasm code as demonstrated in the Deno script below.
I've tried to use the wasm file generated using
grain is-even.gr
, but it doesn't work. I'm getting the following error:Beta Was this translation helpful? Give feedback.
All reactions