guowenxue
2024-07-18 b8d02950d8c50611c2784c7a40e0b3003acf8d49
commit | author | age
1e563e 1 /*********************************************************************************
G 2  *      Copyright:  (C) 2021 LingYun IoT System Studio
3  *                  All rights reserved.
4  *
5  *       Filename:  hello.c
6  *    Description:  This file is hello world test program.
7  *                 
8  *        Version:  1.0.0(2021-12-10)
9  *         Author:  Guo Wenxue <guowenxue@gmail.com>
10  *      ChangeLog:  1, Release initial version on "2021-12-10 22:41:49"
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