1234567891011121314151617181920 |
- /*
- * Copyright (c) 2006-2025 RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2025-01-22 ZhangJing first version
- */
- #include <stdio.h>
- #include <string.h>
- #include <rtthread.h>
- int main(void)
- {
- rt_kprintf("Hello RT-Thread\n");
- return 0;
- }
|