cs50/hello.c

7 lines
73 B
C

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