blob: a23e41e12893119d7d1702662ae7558efba077fc [file] [log] [blame] [edit]
#include <stdio.h>
#include <emscripten.h>
int foo() {
return 42;
}
EMSCRIPTEN_KEEPALIVE void say_hello() {
printf("Hello! answer: %d\n", foo());
}