each_with_index
ruby 1.8.7でコレクションを使用する場合、どのインデックスから開始するかを指定するにはどうすればよいですか?
collection.each_with_index do |element, index = 1|
#do smth
end
このように使用すると、次のエラーが発生します。
syntax error, unexpected '=', expecting '|'
collection.each_with_index do |element, i = 1|