-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
28 lines (23 loc) · 1.11 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dpoveda- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/15 14:42:32 by dpoveda- #+# #+# */
/* Updated: 2022/02/15 15:14:28 by dpoveda- ### ########.fr */
/* */
/* ************************************************************************** */
#include "Karen.hpp"
#include <iostream>
int main(int argc, char *argv[]) {
Karen *karen;
karen = new Karen;
for (int i = 1; i < argc; i++) {
if (i > 1) std::cout << std::endl;
karen->complain(argv[i]);
}
delete karen;
return 0;
}