aboutsummaryrefslogtreecommitdiff
path: root/test cases/wasm/1 basic/hello.cpp
blob: 6ce13daef2e88591c495b066a864d6ee34f4517a (plain)
1
2
3
4
5
6
7
#include<iostream>

int main() {
  std::cout << "Hello World" << std::endl;
  return 0;
}