cs50/hello.c

7 lines
69 B
C
Raw Normal View History

#include <stdio.h>
int main(void)
{
printf("Hello, world\n");
}