hello-world/hello.c

6 lines
73 B
C
Raw Normal View History

2022-04-21 23:42:30 +03:00
#include <stdio.h>
int main()
{
printf("Hello World!");
return 0;
}