TetaTricks/code/hello.c
2021-07-30 23:45:42 +02:00

12 lines
117 B
C

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