From 66635d69fa00e335a091d7e6f2b358cbaaf205e4 Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Tue, 16 Jul 2019 12:58:13 +0200 Subject: c09 passed, c10 start, exam00 and exam01 --- exam01/rendu/hello/hello.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 exam01/rendu/hello/hello.c (limited to 'exam01/rendu/hello/hello.c') diff --git a/exam01/rendu/hello/hello.c b/exam01/rendu/hello/hello.c new file mode 100755 index 0000000..0becc7e --- /dev/null +++ b/exam01/rendu/hello/hello.c @@ -0,0 +1,18 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* hello.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: exam +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/07/12 17:01:31 by exam #+# #+# */ +/* Updated: 2019/07/12 17:03:00 by exam ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include + +int main(void) +{ + write(1, "Hello World!\n", 13); +} -- cgit