Skip to content

Instantly share code, notes, and snippets.

@ka8725
Created April 12, 2020 18:14
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 ka8725/9f74710a721736b94a9430a5112c1b53 to your computer and use it in GitHub Desktop.
Save ka8725/9f74710a721736b94a9430a5112c1b53 to your computer and use it in GitHub Desktop.
def foo
puts 'hello from foo'
end
def bar(f)
f()
end
bar(foo) # => NoMethodError (undefined method `f' for main:Object)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment