cs50/src1/hello0.c

9 lines
112 B
C

// A program that says hello to the world
#include <stdio.h>
int main(void)
{
printf("hello, world\n");
}