Skip to content

Instantly share code, notes, and snippets.

@lukaszkorecki
Created March 15, 2010 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukaszkorecki/332891 to your computer and use it in GitHub Desktop.
Save lukaszkorecki/332891 to your computer and use it in GitHub Desktop.
class Elo
def initialize
puts "hhi"
end
def wowz &func
puts "wow"
@func = func
end
def zorb
puts "zorb"
@func.call "elo"
end
end
el = Elo.new
el.wowz { |hi| puts hi }
el.zorb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment