Skip to content

Instantly share code, notes, and snippets.

@buffpojken
Created April 9, 2013 15:52
Show Gist options
  • Save buffpojken/5346861 to your computer and use it in GitHub Desktop.
Save buffpojken/5346861 to your computer and use it in GitHub Desktop.
def ninja(&block)
if block_given?
block.call("ninja")
else
puts "laser"
end
end
ninja do |hugo|
puts "Block:"+hugo
end
ninja
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment