Example #1
0
Employee makesMore(Employee a, Employee b){
  if (a.getHourlyPay() > b.getHourlyPay()){
    return a;
  } else {
    return b;
  }
};