Skip to content

Instantly share code, notes, and snippets.

Created August 20, 2013 13:07
Show Gist options
  • Save anonymous/6281120 to your computer and use it in GitHub Desktop.
Save anonymous/6281120 to your computer and use it in GitHub Desktop.
def runner(v1, &block)
puts v1
yield
end
runner "OHAI" do
puts "ARRAR"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment