Fibonacci Code Golf
- by Claudiu
Generate the Fibonacci sequence in the fewest amount of characters possible. Any language is OK, except for one that you define with one operator, f, which prints the Fibonacci numbers.
Starting point: 25 characters in Haskell:
f=0:1:zipWith(+)f(tail f)