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