tinycc/examples/ex5.c

9 lines
98 B
C

#include <stdlib.h>
#include <stdio.h>
int main()
{
printf("Hello World\n");
return 0;
}