Skip to content

Instantly share code, notes, and snippets.

@anushadasari
anushadasari / blocks.rb
Created April 24, 2018 11:18
Ruby Metaprogramming
def a_method(a,b)
a + yield(a,b)
end
a_method(1,2) {|x,y| (x + y) * 3}
def another_method
return yield if block_given?
'no_block'