playground/c/hello.c

7 lines
77 B
C
Raw Normal View History

2023-05-23 17:19:15 +00:00
#include<stdio.h>
int main()
{
printf("hello world!\n");
return 0;
}