HariboteOS/day27/app/bug3.c
2021-06-01 20:44:39 +08:00

10 lines
89 B
C

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