rauhryan
3/1/2012 - 11:12 PM

gistfile1.rb

def my_cool_for_each

   %w{ hello there }.each { |x| yield x }

end

my_cool_for_each do |x|
    puts x
end