in reply to Fibonacci numbers (again)

The same in 28 chars:
print$}+=$.||1,$.+=$}while.1
Update: The same in 27 chars:
print$}+=$.=$}-$.||1while.1


Replies are listed 'Best First'.
Re^2: Fibonacci numbers (again)
by Murcia (Monk) on Sep 15, 2005 at 14:00 UTC
    it would nice to explain the code ... Murcia
      print$}+=$.=$}-$.||1while.1 # means - while ( 1 ) { $. = $} - $.; $. ||= 1; $} = $} + $.; print $}; }