Skip to content

Instantly share code, notes, and snippets.

@jpetrich
Created January 5, 2018 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpetrich/853964d6c1d31783e805983befff106e to your computer and use it in GitHub Desktop.
Save jpetrich/853964d6c1d31783e805983befff106e to your computer and use it in GitHub Desktop.
func pluralize(forNumber number:Int?) -> String {
if let number = number {
if number == 1 {
return "\(number) mouse"
} else {
return "\(number) mice"
}
}
return "no mice"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment