Created
September 5, 2015 17:20
-
-
Save DouglasAllen/15a5721b519a48b0d67e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# method_call.rb | |
def hello | |
"Hello there!" | |
end | |
hi = method :hello | |
def say mo | |
mo.call | |
end | |
say hi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment