2025-03-05 15:45:19 +08:00

5 lines
94 B
C

extern int _print_str(const char* str);
int main(void) {
_print_str("Hello, world!\n");
}