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
let rec fibSeq p0 p1 = seq { yield p0 yield! fibSeq p1 (p0+p1) }