From 017c554ce6262099c3afee5b03e7fda4a3f9e902 Mon Sep 17 00:00:00 2001 From: LinlyBoi Date: Fri, 18 Aug 2023 23:45:23 +0300 Subject: [PATCH] hello world test --- tests/hello.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/hello.c diff --git a/tests/hello.c b/tests/hello.c new file mode 100644 index 0000000..da142a4 --- /dev/null +++ b/tests/hello.c @@ -0,0 +1,11 @@ +#include "../main.h" +/** + * main - Hello world + * + * Return: always 0 + **/ +int main(void) +{ + int len; + len = _printf("Hello world"); +}