hello world test

This commit is contained in:
LinlyBoi
2023-08-18 23:45:23 +03:00
parent 2ce34badb1
commit 017c554ce6

11
tests/hello.c Normal file
View File

@@ -0,0 +1,11 @@
#include "../main.h"
/**
* main - Hello world
*
* Return: always 0
**/
int main(void)
{
int len;
len = _printf("Hello world");
}