Skip to content

Instantly share code, notes, and snippets.

@coffeejunk
Created November 27, 2012 11:09
Show Gist options
  • Save coffeejunk/4153679 to your computer and use it in GitHub Desktop.
Save coffeejunk/4153679 to your computer and use it in GitHub Desktop.
class Awesome
def initialize(hello, &block)
yield hello
end
end
str = 'hi tom'
Awesome.new(str) do |hio|
puts hio
end
@brantz
Copy link

brantz commented Nov 27, 2012

=> hi tom

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment