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