From 3d18a2f2dac05d0e62b099c764dac9778512b07b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ondr=CC=8Cej=20Ochodnicky=CC=81?= Date: Thu, 26 Apr 2018 20:45:17 +0200 Subject: [PATCH] add moneymaker --- .gitignore | 1 + ucastnici/26.4.2018/main.c | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 ucastnici/26.4.2018/main.c diff --git a/.gitignore b/.gitignore index 7440bb0..d24f423 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,6 @@ *.swo .DS_Store +ucastnici/26.4.2018/a.out # https://github.com/github/gitignore diff --git a/ucastnici/26.4.2018/main.c b/ucastnici/26.4.2018/main.c new file mode 100644 index 0000000..6ec388a --- /dev/null +++ b/ucastnici/26.4.2018/main.c @@ -0,0 +1,7 @@ +#include +int main() +{ + // printf() displays the string inside quotation + printf("Hello, World!"); + return 0; +} \ No newline at end of file