--Apple-Mail-21-92528708
Content-Transfer-Encoding: 7bit
Content-Type: text/plain;
	charset-ASCII;
	formatðïwed


On Mar 5, 2006, at 6:40 PM, Geoff Lane wrote:

> if __FILE__ $0
>    0.upto(ARGV.length - 1) do |i|
>        puts "Fibonacci for: " + ARGV[i]
>        f  ibonacci.new(ARGV[i].to_i)
>        f.draw
>        puts
>    end
> end


EEEK! ;)

if __FILE__ $0
     ARGV.each do |i|
       puts "Fibonacci for: #{i}"
       f  ibonacci.new(i.to_i)
       f.draw
       puts
   end
end


--Apple-Mail-21-92528708--