#include <stdio.h>
#include <emscripten.h>
extern void sample_function();
int main() {
printf("Hello World\n");
// sampleFunction(); ????
return 0;
}