c-practice/j.c

8 lines
79 B
C
Raw Permalink Normal View History

2021-01-19 10:40:24 -06:00
#include <stdio.h>
int main() {
while (1) {
putchar('j');
}
}