TetaTricks/code/hello.c

12 lines
117 B
C
Raw Normal View History

2021-07-30 23:45:42 +02:00
/*
* Hello, Sun.
*/
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[])
{
2021-07-30 23:45:42 +02:00
printf("hello world.\n");
2020-11-20 04:06:44 +01:00
return 0;
}