Files
cpp-examples/gradle/hellomuni/src/main/cpp/hellomuni.cpp
2013-11-22 16:19:17 +01:00

10 lines
111 B
C++

#include <iostream>
using namespace std;
int main() {
cout << "Hello FI MUNI!" << endl;
return 0;
}