HariboteOS/day28/app/bug3.c
2021-06-01 21:15:52 +08:00

10 lines
89 B
C

#include "api.h"
int main(void) {
for (;;) {
api_putchar('a');
}
return 0;
}