If the player spells a ten or more letter word, they should receive a 200 point bonus

From TRCCompSci - AQA Computer Science
Revision as of 12:49, 14 November 2017 by MoistPotato (talk | contribs)
Jump to: navigation, search
if (Word.Length > 10)
{
  score = score + 200;
}

oui