blob: b95a66e8aa187116fa9e2c8672d2f6aeeba6f1e6 [file] [log] [blame]
#include <stdio.h>
#include <emscripten.h>
extern "C" {
__attribute__((annotate("hello attribute world")))
EMSCRIPTEN_KEEPALIVE void foobar(int x) {
printf("Worked! %d\n", x);
}
}
int main() {
emscripten_run_script("Module['_foobar'](10)");
return 0;
}