guowenxue
2024-09-26 2b179f80693db10cb5a93ee649917ae6988feaf2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*********************************************************************************
 *      Copyright:  (C) 2021 LingYun IoT System Studio
 *                  All rights reserved.
 *
 *       Filename:  hello.c
 *    Description:  This file is hello world test program.
 *                 
 *        Version:  1.0.0(2021-12-10)
 *         Author:  Guo Wenxue <guowenxue@gmail.com>
 *      ChangeLog:  1, Release initial version on "2021-12-10 22:41:49"
 *                 
 ********************************************************************************/
 
#include <stdio.h>
 
int main (int argc, char **argv)
{
    printf("Hello, LingYun IoT System Studio.\n");
 
    return 0;