Skip to content

Instantly share code, notes, and snippets.

@jpetrich
Last active 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/2743e8ae3a17aea542b69c2a3a1bd616 to your computer and use it in GitHub Desktop.
Save jpetrich/2743e8ae3a17aea542b69c2a3a1bd616 to your computer and use it in GitHub Desktop.
protocol Pluralizable {
func pluralize(forNumber number:Int?) -> String
}
class Mouse : Pluralizable {
func pluralize(forNumber number:Int?) -> String {
if number! == 1 {
return "\(number!) mouse"
} else {
return "\(number!) mice"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment