learn_c/intro/hello.c

7 lines
59 B
C
Raw Permalink Normal View History

2023-11-13 18:18:50 +00:00
#include <stdio.h>
main()
{
printf("hello, world\n");
}