Project-Scylla/KNR C/hello_world.c

8 lines
77 B
C
Raw Normal View History

2025-07-29 13:06:28 -07:00
#include <stdio.h>
int main()
{
printf("hello, world\n");
return 0;
}