You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Import from the installed as-wasi packageimport{Console,Environ}from"as-wasi/assembly";// Create an environ instanceletenv=newEnviron();// Get the HOME Environment variablelethome=env.get("HOME")!;// Log the HOME string to stdoutConsole.log(home);
Then building asc assembly/index.ts --target release throws compile error:
Just following the Quick Start:
Then building
asc assembly/index.ts --target release
throws compile error:This error disappears if I don't use
Environ
but onlyConsole
for example.Maybe related to #127
The text was updated successfully, but these errors were encountered: