Writing code in Java, Ruby and JavaScript
class Array def each! while count > 0 yield(shift) end end end