1
Fork 0
mirror of https://github.com/RGBCube/CSAssignments synced 2025-06-08 15:12:09 +00:00
CSAssignments/sources/c/example/example.c
2022-11-04 21:07:36 +03:00

8 lines
119 B
C

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