add basic project structure

This commit is contained in:
2025-03-25 16:37:33 +01:00
parent 2dabc9d659
commit b72e86d410
3 changed files with 55 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#include <iostream>
int main(int argc, char *argv[]) {
for(int i= 0;i < 10; i++){
std::cout << "trestní oznámení\n";
}
}