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

int main()
{
  std::cout << "hello, world!" << std::endl;
  emscripten_jcache_printf("waka %d waka\n", 5);
  emscripten_jcache_printf("yet another printf %.2f %d\n", 5.5, 66);
  return 0;
}