added first file

This commit is contained in:
Jakub Radowicz 2020-11-25 23:30:31 +01:00
commit 71081e1fac

9
hello_world.c Normal file
View File

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