feat(ex06): it works

This commit is contained in:
Khaïs COLIN 2025-05-13 09:54:00 +02:00
parent 3fa6069da8
commit bf61ec6e5a
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo
5 changed files with 146 additions and 0 deletions

12
ex06/main.cpp Normal file
View file

@ -0,0 +1,12 @@
#include "Harl.hpp"
int main(int argc, char *argv[]) {
std::string level;
if (argc != 2)
level = "invalid";
else
level = argv[1];
Harl harl;
harl.complain(level);
return 0;
}