main.c 221 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. */
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10. int main(void)
  11. {
  12. printf("hello!\n");
  13. return 0;
  14. }