mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-06 13:34:35 +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;
|
|
}
|
|
|