banan-os/userspace/test.c

9 lines
103 B
C
Raw Normal View History

#include <stdio.h>
2023-04-12 22:20:18 +03:00
int main()
{
2023-04-23 14:32:37 +03:00
if (printf("Hello %s!", "World") == -1)
perror(NULL);
2023-04-12 22:20:18 +03:00
return 0;
}