Skip to content

Instantly share code, notes, and snippets.

Created April 22, 2015 16:15
Show Gist options
  • Save anonymous/41d08fddc611d41cd3a6 to your computer and use it in GitHub Desktop.
Save anonymous/41d08fddc611d41cd3a6 to your computer and use it in GitHub Desktop.
def foo(a = 'a', b = 'b')
puts a.inspect
puts b.inspect
end
foo(nil, 2) # I cannot access the default value for parameter a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment