summary refs log tree commit diff stats
path: root/src/main.cpp
blob: 22bdf9215fe92204983db0875d55b1d5ed941f46 (plain) (blame)
1
2
3
4
5
6
#include <iostream>

int main(int, char**) {
  std::cout << "hi" << std::endl;
  return 0;
}