main.c 349 B

1234567891011121314151617
  1. /**
  2. * RT-Thread RuiChing
  3. *
  4. * COPYRIGHT (C) 2024-2025 Shanghai Real-Thread Electronic Technology Co., Ltd.
  5. * All rights reserved.
  6. *
  7. * The license and distribution terms for this file may be
  8. * found in the file LICENSE in this distribution.
  9. */
  10. #include <rtthread.h>
  11. int main(void)
  12. {
  13. rt_kprintf("Hello, RT-Thread app\n");
  14. return 0;
  15. }