TetaTricks/code/C/hello.c

8 lines
90 B
C
Raw Normal View History

2024-09-10 14:27:37 +02:00
#include <stdio.h>
int main(int argc, char *argv[])
{
puts("hello world.");
return 0;
}