add C++ example of build by Gradle

This commit is contained in:
Juraj Michalek
2013-11-22 16:19:17 +01:00
parent 69209f4bee
commit 184046961d
4 changed files with 28 additions and 0 deletions

View File

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