Press CTRL+C or CMD+C to copy the selected text and close this dialog.
Tweet
2 people like it. Like the snippet!
fibonacci by Seq.Unfold
1:
let fibonacci = Seq.unfold(fun (x,y) -> Some(x, (x + y, x))) (0,1)