I\'m just starting to learn F# using VS2010 and below is my first attempt at generating the Fibonacci series. What I\'m trying to do is to build a list of all numbers less
One more codata'ish way:
let rec fib = seq { yield! seq {0..1} yield! Seq.map (fun(a,b)->a+b) <| Seq.zip fib (Seq.skip 1 fib) } let a = fib |> Seq.take 10 |> Seq.toList