Skip to content

Instantly share code, notes, and snippets.

@fortruce
Created February 21, 2016 03:23
Show Gist options
  • Save fortruce/26032353ae884a4aac1b to your computer and use it in GitHub Desktop.
Save fortruce/26032353ae884a4aac1b to your computer and use it in GitHub Desktop.
def capitalize(string) do
String.capitalize(String.at(string, 0)) <> String.slice(string, 1..String.length(string)-1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment