1
Fork 0
mirror of https://github.com/RGBCube/CSAssignments synced 2025-06-13 09:32:09 +00:00

Start working on new interactive runner

This commit is contained in:
RGBCube 2022-11-04 16:44:37 +03:00
parent 1080941194
commit 38ba3af643
23 changed files with 202 additions and 15 deletions

View file

@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
for (int i = 0; i < 10; i++) {
printf("Example");
}
return 0;
}