sjorn3
sjorn3
I've found another issue that's clearly a big part of the problem: ```julia function this(u, v) u, v = v, u return v end function this_(u, v) u_, v_ =...
It was my hope that the `julia-0.7` branch would avoid this problem (and I think it might) but there are many other problems with `gcd` now, including the use of...
I managed to get a fairly neat array summing example compiling by dropping the output of `@code_wasm` into a module with `allocate` and `deallocate` (and a few others) pinched from...
Yeah that seems to be exactly what it's doing.
I could definitely give that a go.
The problem I seem to be running into (and can't currently think of a solution to) is that I think wasm-ffi takes the array you pass to it, allocates some...
Here's a gist of an example: https://gist.github.com/sjorn3/193c231ace6e1f26cbb827d31e542631 It needs to be run on Chrome 67, but I can change that if need be. Is the example here somewhere: https://demille.github.io/wasm-ffi/docs/assemblyscript/? I...
Not as clean as I might like but I have gotten something working. When I try to use BigInt64s it gets strange, so I'll have to stick with Int32 arrays...
Yep all of my blog stuff is still up at seaninn.es/gsoc_blog. I think the one you want is: http://seaninn.es/gsoc_blog/gsoc/2018/06/25/array-example.html If these changes are just fixing the docos tests and updating...
I'm not sure what would be wrong with the binary off the top of my head, but definitely the issue with wast is that I never added a show instance...