mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 01:29:24 +08:00
11 lines
127 B
C
11 lines
127 B
C
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
printf("hello rt-thread\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|