consolidate all repos to one for archive

This commit is contained in:
2025-01-28 13:46:42 +01:00
commit a6610fbc7a
5350 changed files with 2705721 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
//
// Created by Dragana on 31. 03. 2022.
//
#include "PrintUtility.h"
void PrintUtility::print(const ColorCode &color, const std::string& str) {
std::cout << "\033[" << (int)color << "m" << str << "\033[0m";
}
void PrintUtility::print(const ColorCode &color, unsigned int n) {
for(int i = 0; i < n; i++)
print(color, " *");
}