I often find myself in need of i++, for example: ``` i = 0 rows.each { |row| row_class = (i % 2 == 0) ? "even" : "odd" html += "..." i += 1 } ``` Writing i += 1 sucks. Also i++ seems to be more expressive because I don't mean to _add one_, I man to _increment_.