aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_libcxx_mod2.cpp
blob: b18a523a872ac8ea347223844f7448456cce1105 (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include <emscripten.h>

int main()
{
  std::cout << "hello, world!" << std::endl;
  emscripten_jcache_printf("waka %d waka\n", 5);
  return 0;
}