No, I am not competing for obfuscated code context. I realized while showing it to someone that Fibonacci series can be written much more succintly using modern programming languages like c, java or php.

Here is the one-line php version:
' ?>

It outputs 100 fibonacci numbers, each in separate line.
Note: It doesn't use a temporary variable as is normal in other implementations. It obviates the need by utilizing the power of expressions. The rest is achieved with a simple for loop.

Here is the same example in Java / JSP.
<% for(double current = 1, last = 0, i = 1;i++ <= 100;) out.println((current = last + (last = current)) + "
"); %>

Note: The double is used because long is unable to display correctly all 100 numbers due to size limitations.