TetaTricks/code/hello.c

8 lines
90 B
C
Raw Permalink Normal View History

2020-11-20 04:06:44 +01:00
#include <stdio.h>
2021-07-30 23:45:42 +02:00
2020-11-20 04:06:44 +01:00
int main(int argc, char *argv[])
{
2023-04-02 23:32:29 +02:00
puts("hello world.");
2020-11-20 04:06:44 +01:00
return 0;
}