aboutsummaryrefslogtreecommitdiff
path: root/Compiler/src/main.cpp
blob: ac686c3e89fd94d33798cb7d7f6d8309c2a7fed4 (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>

using std::cout;
using std::endl;

int main()
{
  cout << "Hello, world!" << endl;
  return 0;
}