blob: 8ad14937bb7b75385e78938fd07c78a192c74e52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/02 12:57:25 by cacharle #+# #+# */
/* Updated: 2020/11/09 10:59:52 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "Brain.hpp"
#include "Human.hpp"
int main()
{
Human bob;
std::cout << bob.identify() << std::endl;
std::cout << bob.getBrain().identify() << std::endl;
}
|