auto_bus/main.c

17 lines
264 B
C
Raw Normal View History

2022-04-29 10:37:33 +08:00
#include "example.h"
2022-05-04 16:24:05 +08:00
/**
* @brief
*
* @return int 0
*/
2022-04-29 10:37:33 +08:00
int main()
{
2022-05-04 16:24:05 +08:00
/**
* @brief
*
*/
2022-04-29 10:37:33 +08:00
char* string = "Good morning!\n";
print(string);
return 0;
}