summaryrefslogtreecommitdiffstats
path: root/dev-template/dj/hello.cc
blob: c3aaa22c0005074b3ef1da0583ae020bd3172b17 (plain)
1
2
3
4
5
6
7
8
9
#include <iostream>

using namespace std;

int main(void)
{
  cout << "hello" << endl;
  return 0;
}