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

push [Ruby]

a = Array.new

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

a.each { | n | puts n }