auto_bus/main.c

8 lines
107 B
C
Raw Normal View History

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