/*
a boa is a class
new boa(string color, double length,
string food)
...representing a boa with:
a color that is its primary coloring,
a length in meters,
a preferred food
template for a function with a boa parameter a_boa:
ret_type process_boa(boa a_boa)
{
return ... a_boa.get_color() ...
... a_boa.get_length() ...
... a_boa.get_food() ... ;
}
*/
#include "boa.h"
using namespace std;
// TO BE CONTINUED in lab on Friday!