#include <iostream>
#include <vector>
#include <algorithm>
#include "person.h"

int main(){
	// make a Person class object
        Person david("David", 48, "Male"); // call the other constructor
        Person jake("Jake", 38, "Male"); // call the other constructor
        Person lisa("Lisa", 13, "Female"); // call the other constructor
	Person alice("Alice", 21, "Female");

	// Driver driver;
	// std::cout << driver << std::endl;

	// call the non member operator<<
	std::cout << alice << std::endl;

	// this will call the member operator<<
	alice << std::cout;
}
