Syntax 17.1 : Overloading Operator Definition
return_type operatoroperator_symbol(parameters) { statements }
int operator-(Time a, Time b) { return a.seconds_from(b) }