/*********************************************************************************
|
* Copyright: (C) 2024 LingYun IoT System Studio.
|
* All rights reserved.
|
*
|
* Filename: hello.c
|
* Description: This file is hello example application build in yocto
|
*
|
* Version: 1.0.0(2024/07/14)
|
* Author: Guo Wenxue <guowenxue@gmail.com>
|
* ChangeLog: 1, Release initial version on "2024/07/14 10:34:45"
|
*
|
********************************************************************************/
|
|
#include <stdio.h>
|
|
int main (int argc, char **argv)
|
{
|
printf("Hello, LingYun IoT System Studio!\n");
|
|
return 0;
|
}
|