From 71081e1fac26dedfe78aa975a8efec2e917b493c Mon Sep 17 00:00:00 2001 From: Jakub Radowicz Date: Wed, 25 Nov 2020 23:30:31 +0100 Subject: [PATCH] added first file --- hello_world.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello_world.c 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; +}