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

int main() {
  int *x = (int*)8;
  *x = 123;
  EM_ASM({
    Module.print("hello, world " + HEAP32[8>>2] + "!");
  });
}