René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

pop [Ruby]

a = Array.new

a.push('one')
a.push('two')
a.push('three')
a.push('four')

puts "pop: " + a.pop

a.each { | n | puts n }