mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-14 19:49:34 +08:00
17 lines
221 B
C
17 lines
221 B
C
|
/*
|
||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
*/
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
printf("hello!\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|