I was somewhat disappointed with the recent troubles on Typo’s trac site, so I’m giving Mephisto a shot.

Attachment test: YOU CAN'T CUT BACK ON FUNDING!  YOU WILL REGRET THIS!

# proc.rb
x = ["zeroth", "first", "gaius baltar"]
n = 0
x.each do |e|
  puts "The #{n}th entry is #{e}"
  n += 1
end