commit 71081e1fac26dedfe78aa975a8efec2e917b493c Author: Jakub Radowicz Date: Wed Nov 25 23:30:31 2020 +0100 added first file diff --git a/hello_world.c b/hello_world.c new file mode 100644 index 0000000..ac9fd98 --- /dev/null +++ b/hello_world.c @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main() { + + cout << "hello world!" << endl; + return 0; +}