You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1002 B
21 lines
1002 B
3 years ago
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* main.cpp :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/06/17 11:37:33 by narnaud #+# #+# */
|
||
|
/* Updated: 2022/07/18 12:59:24 by narnaud ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "Harl.hpp"
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
Harl bot;
|
||
|
if (argc == 2)
|
||
|
bot._complain(argv[1]);
|
||
|
}
|