Help for this page

Select Code to Download


  1. or download this
    for var in iteratable
      puts "Frobnicated: #{var.frobnicate}"
    ...
    ## is pretty much just the same as this . . .
    
    iteratable.each { |var| puts "Frobnicated: #{var.frobnicate}" }