summaryrefslogtreecommitdiff
path: root/test/wasm_backend/hello_world_only.cpp
blob: a4a6a025d095b224d7e42e1eca03fbbb9e9a3c0b (plain)
1
2
3
4
5
6
7
8
#include <emscripten.h>

int main() {
  EM_ASM({
    Module.print("hello, world!");
  });
}