From a79d65eb28c0c229973a1253f0d9652a8ec4dfd6 Mon Sep 17 00:00:00 2001 From: Adam JOLY Date: Sat, 9 Nov 2024 19:17:03 +0100 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=94=A8=E3=80=8D=20fix(Harl=202.0?= =?UTF-8?q?):=20Add=20funny=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ex05/harl.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ex05/harl.cpp b/ex05/harl.cpp index ce8ae73..e1c022d 100644 --- a/ex05/harl.cpp +++ b/ex05/harl.cpp @@ -6,7 +6,7 @@ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/09 17:15:01 by adjoly #+# #+# */ -/* Updated: 2024/11/09 17:39:12 by adjoly ### ########.fr */ +/* Updated: 2024/11/09 19:16:07 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ @@ -26,17 +26,17 @@ void Harl::complain(std::string level) { } void Harl::debug(void) { - std::cout << "I love having extra bacon for my 7XL-double-cheese-triple-pickle-specialketchup burger. I really do!" << std::endl; + std::cout << "[DEBUG]: NixOS is the only true answer" << std::endl; } void Harl::info(void) { - std::cout << "I cannot believe adding extra bacon costs more money. You didn’t put enough bacon in my burger! If you did, I wouldn’t be asking for more!" << std::endl; + std::cout << "[INFO]: NixOS is on 24.05" << std::endl; } void Harl::warning(void) { - std::cout << "I think I deserve to have some extra bacon for free. I’ve been coming for years whereas you started working here since last month." << std::endl; + std::cout << "[WARNING]: Please no Ubuntu here" << std::endl; } void Harl::error(void) { - std::cout << "This is unacceptable! I want to speak to the manager now." << std::endl; + std::cout << "[ERROR]: Arch issue switch to NixOS please for god sake" << std::endl; }