Skip to content

Instantly share code, notes, and snippets.

@abrongersma
Created March 22, 2013 06:13
Show Gist options
  • Save abrongersma/5219333 to your computer and use it in GitHub Desktop.
Save abrongersma/5219333 to your computer and use it in GitHub Desktop.
def first_character(word) <--- the argument for the method is accessable inside the method.
word = "#{word}" <--- this line is redundant. Try running your code without this line.
word[0]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment