Files
2020-08-31 21:59:22 -04:00

15 lines
145 B
C

/*
* Simple hello world application
*
* Author: Kun Deng
*/
#include <stdio.h>
int main()
{
printf("hello, world\n");
return 0;
}