This repository has been archived on 2026-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
niklasjohnson/c/print.c
2026-03-18 22:48:20 -07:00

9 lines
113 B
C

#include <stdio.h>
int main() {
for (int i = 0; i < 10; i++) {
printf("poopy\n");
}
return 0;
}