public class Dealer{
    /**
     *  Answer whether the dealer wants one more card.
     *  Return true iff the total points are soft-17 or
     *  less than 16. 
     */    
    public boolean hit_me(Table tbl){
	//TODO: Modify the following line and implement the rule above
	return false;
    }
}

