ary = ["foo", "bar", "baz"]

cursor = ary.get_cursor
while cursor.more?
  obj = cursor.next
  p obj
end

