Add main.cpp

This commit is contained in:
augustin64 2023-10-20 17:06:27 +02:00
parent b88166f3ae
commit bb5a2642e3
2 changed files with 24 additions and 0 deletions

17
src/include/colors.h Normal file
View File

@ -0,0 +1,17 @@
#include <stdio.h>
#ifndef DEF_COLORS_H
#define DEF_COLORS_H
#define RESET "\033[0m"
#define BLACK "\033[30m" /* Black */
#define RED "\033[31m" /* Red */
#define GREEN "\033[32m" /* Green */
#define YELLOW "\033[33m" /* Yellow */
#define BLUE "\033[34m" /* Blue */
#define MAGENTA "\033[35m" /* Magenta */
#define CYAN "\033[36m" /* Cyan */
#define WHITE "\033[37m" /* White */
#define BOLD "\033[1m" /* BOLD */
#endif

7
src/main.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
using namespace std;
int main(int argc, char* argv[]) {
return 0;
}