Skip to content

Instantly share code, notes, and snippets.

@josejuan
Last active August 29, 2015 13:56
Show Gist options
  • Save josejuan/8924999 to your computer and use it in GitHub Desktop.
Save josejuan/8924999 to your computer and use it in GitHub Desktop.
foreach(var n in enumerableFib(4))
Console.WriteLine("e ~> {0}", n);
/*
e ~> 4
e ~> 3
e ~> 2
e ~> 1
e ~> 0
e ~> 1
e ~> 2
e ~> 1
e ~> 0
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment