Ruby talk for austinonrails
<< >>
Blocks are incredibly useful

    list.each {|x| process(x) }

    mutex.synchronize { whatever }

    Dir.chdir(newdir) { do_something }

    loop do
      puts "I'm a loop"
      puts "which is almost infinite..."
      break if rand < 0.01
    end