blob: 352a8ed84f1629d4d5dd55ab50de532c3f4a1305 (
plain)
1
2
3
4
5
6
7
8
|
#include <emscripten.h>
int main() {
EM_ASM({ Module.print("Hello world"); });
int ret = EM_ASM_INT({ return $0 + $1; }, 20, 30);
EM_ASM({ Module.print("Got " + $0); }, 42);
return ret;
}
|