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