guowenxue
2024-07-15 bf3c1b67a4b493288310170cc22d3ea3b3e3e781
commit | author | age
17e726 1 /*********************************************************************************
G 2  *      Copyright:  (C) 2024 LingYun IoT System Studio.
3  *                  All rights reserved.
4  *
5  *       Filename:  hello.c
6  *    Description:  This file is hello example application build in yocto
7  *
8  *        Version:  1.0.0(2024/07/14)
9  *         Author:  Guo Wenxue <guowenxue@gmail.com>
10  *      ChangeLog:  1, Release initial version on "2024/07/14 10:34:45"
11  *
12  ********************************************************************************/
13
14 #include <stdio.h>
15
16 int main (int argc, char **argv)
17 {
18     printf("Hello, LingYun IoT System Studio!\n");
19
20     return 0;
21 }
22