banan-os/userspace/test.c

9 lines
103 B
C

#include <stdio.h>
int main()
{
if (printf("Hello %s!", "World") == -1)
perror(NULL);
return 0;
}