/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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; }