コード例 #1
0
ファイル: main.cpp プロジェクト: bensisko69/projet_42
int main()
{
	Human	bob;

	std::cout << bob.identify() << std::endl;
	std::cout << bob.getBrain().identify() << std::endl;
}
コード例 #2
0
ファイル: main.cpp プロジェクト: bsautron/PiscineCpp
int		main(void)
{
	Human bob;

	std::cout << bob.identify() << std::endl;
	std::cout << bob.getBrain().identify() << std::endl;
	return (0);
}