blob: b18a523a872ac8ea347223844f7448456cce1105 [file] [log] [blame] [edit]
#include <iostream>
#include <emscripten.h>
int main()
{
std::cout << "hello, world!" << std::endl;
emscripten_jcache_printf("waka %d waka\n", 5);
return 0;
}