Files
CS50---Harvard/src1/hello0.c
T
2026-05-28 10:16:10 +00:00

9 lines
112 B
C

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