Example #1
0
 static string ScoreForPoints(GamePoints points)
 {
     return points.AreEqual()
     ? ScoreForPlayersEqual(points)
     : ScoreForPlayerLeading(points);
 }
Example #2
0
 static string ScoreForPoints(GamePoints points)
 {
     return(points.AreEqual()
 ? ScoreForPlayersEqual(points)
 : ScoreForPlayerLeading(points));
 }