Skip to content

Instantly share code, notes, and snippets.

@dacc
Created May 18, 2010 03:08
Show Gist options
  • Save dacc/404558 to your computer and use it in GitHub Desktop.
Save dacc/404558 to your computer and use it in GitHub Desktop.
ruby-1.9.1-p378 > ps = []
=> []
ruby-1.9.1-p378 > 3.times do |i|
ruby-1.9.1-p378 > ps.push(proc { i })
ruby-1.9.1-p378 ?> end
=> 3
ruby-1.9.1-p378 >
ruby-1.9.1-p378 > ps.each do |p|
ruby-1.9.1-p378 > puts p.call
ruby-1.9.1-p378 ?> end
0
1
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment