Created
June 13, 2014 09:45
-
-
Save kuc-arc-f/fc14f9da1102e62f7f39 to your computer and use it in GitHub Desktop.
sample, asm.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <emscripten.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
int main() { | |
printf("hello, world!\n"); | |
EM_ASM( | |
//js-call | |
console.log( '#hello, world-Inline-JS '); | |
); | |
return 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment