TetaTricks/code/hello.c

12 lines
117 B
C
Raw Normal View History

2021-07-31 08:45:42 +11:00
/*
* Hello, Sun.
*/
2020-11-20 14:06:44 +11:00
#include <stdio.h>
2021-07-31 08:45:42 +11:00
2020-11-20 14:06:44 +11:00
int main(int argc, char *argv[])
{
2021-07-31 08:45:42 +11:00
printf("hello world.\n");
2020-11-20 14:06:44 +11:00
return 0;
}