git-workshop/participants/gyk/helloworld.cc

6 lines
68 B
C++

#include <cstdio>
int main()
{
printf("hello world!");
return 0;
}