Skip to content

Instantly share code, notes, and snippets.

@3014zhangshuo
Created August 14, 2020 06:57
Show Gist options
  • Save 3014zhangshuo/34554f216d9ba96f326f08e5bff0bc35 to your computer and use it in GitHub Desktop.
Save 3014zhangshuo/34554f216d9ba96f326f08e5bff0bc35 to your computer and use it in GitHub Desktop.
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