summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 9aeccde5be44d859932c3096d70e30b2b3cf2d84 (plain)
1
2
3
4
5
6
7
#include <iostream>

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