http://qs1969.pair.com?node_id=811301


in reply to Re: Fibonacci Generator
in thread Fibonacci Generator

i think this is much better:--- #!/user/bin/perl $a=0; $b=1; for($i=0;$i<=20;$i++) { print "$a\n"; $c=$a+$b; $a=$b; $b=$c; }