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
You can’t have a local in WebAssembly be backed by more than a primitive (you can’t have local a be {i32, i32}), so that prevents us from writing a = func_returning_two_i32s(). (Unless we added higher-level combo locals on top, which I want to wait and see with Orb 1.0 and how people find writing programs in it).
The text was updated successfully, but these errors were encountered:
Now we can return tuples #20 we might want to use tuples for other operations such as assignment.
We could allow someone to write:
You can’t have a local in WebAssembly be backed by more than a primitive (you can’t have local
a
be{i32, i32}
), so that prevents us from writinga = func_returning_two_i32s()
. (Unless we added higher-level combo locals on top, which I want to wait and see with Orb 1.0 and how people find writing programs in it).The text was updated successfully, but these errors were encountered: