TetaTricks/code/hello.c
2023-10-08 21:56:41 +02:00

8 lines
90 B
C

#include <stdio.h>
int main(int argc, char *argv[])
{
puts("hello world.");
return 0;
}