MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

improve wasm demo

+9
+3
examples/wasm/demo.sh
··· 1 + emcc -O3 hello.c -o hello.cjs 2 + ant hello.cjs 3 + rm hello.cjs hello.wasm
+6
examples/wasm/hello.c
··· 1 + #include <stdio.h> 2 + 3 + int main() { 4 + printf("hello, world!\n"); 5 + return 0; 6 + }