Created
April 12, 2020 18:14
-
-
Save ka8725/9f74710a721736b94a9430a5112c1b53 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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