adding logs

This commit is contained in:
Kbz-8
2024-01-21 10:01:32 +01:00
parent d9d6bb3a8c
commit 4374f826ea
6 changed files with 138 additions and 10 deletions

View File

@@ -1,24 +0,0 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/20 09:27:04 by maldavid #+# #+# */
/* Updated: 2024/01/20 19:19:39 by maldavid ### ########.fr */
/* */
/* ************************************************************************** */
#include <unstd/unique_ptr.hpp>
#include <unstd/shared_ptr.hpp>
#include <unstd/weak_ptr.hpp>
#include <ansi.hpp>
int main(int ac, char** av)
{
(void)ac;
(void)av;
std::cout << AnsiColor::red << "this" << AnsiColor::blue << " is" << AnsiColor::green << " a" << AnsiColor::yellow << " test" << AnsiColor::reset << std::endl;
return 0;
}