Skip to content

Instantly share code, notes, and snippets.

@Zkuns
Last active August 29, 2015 14:18
Show Gist options
  • Save Zkuns/7c905143bf61bcdbd52d to your computer and use it in GitHub Desktop.
Save Zkuns/7c905143bf61bcdbd52d to your computer and use it in GitHub Desktop.
the block use method in anemone(I think it make me confusing)
class Block_test
def initialize
yield self
end
def self.test
self.new do |word|
yield word
end
end
def hi
puts 'hi'
end
end
Block_test.test do |test_object|
test_object.hi
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment