Created
August 14, 2020 06:57
-
-
Save 3014zhangshuo/34554f216d9ba96f326f08e5bff0bc35 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
def hi name | |
p 'hi ' + name | |
end | |
hi "zhangshuo" | |
method(:hi).call("good man") | |
def hi_back v, name | |
v.call name.upcase | |
end | |
hi_back method(:hi), "bad man" | |
def hi_back_two | |
yield | |
end | |
hi_back_two { hi("luck man") } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment