From: Stefan Rusterholz Date: 2007-08-18T20:04:45+09:00 Subject: Re: How do you print the first 5 records in an array? Bob Sanders wrote: > Let's say I have an array defined as: > > @people = ["Jim", "Jen", "Jess", "Jay", "Jack", "John", "Jeff", "Jed", > "Jill"] > > How would I then print out the first 5 records of that array? (i.e. from > Jim to Jack) > > Any ideas? puts(*@people.first(5)) Ruby, so surprisingly unsurprising :) Regards Stefan -- Posted via http://www.ruby-forum.com/.