TetaTricks/code/hello.c
2023-04-02 23:32:29 +02:00

12 lines
113 B
C

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