Skip to content

Instantly share code, notes, and snippets.

@osorionicolas
Created January 11, 2021 13:15
Show Gist options
  • Select an option

  • Save osorionicolas/672bb55e9a0b880297c2726d90c47cc5 to your computer and use it in GitHub Desktop.

Select an option

Save osorionicolas/672bb55e9a0b880297c2726d90c47cc5 to your computer and use it in GitHub Desktop.
Scala - Capitalize
def capitalizeAll(args: String*) = {
args.map { arg =>
arg.capitalize
}
}
capitalizeAll("rarity", "applejack")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment