Skip to content

Instantly share code, notes, and snippets.

@josejuan
Last active August 29, 2015 13:56
Show Gist options
  • Save josejuan/8924805 to your computer and use it in GitHub Desktop.
Save josejuan/8924805 to your computer and use it in GitHub Desktop.
var r =
SyncLink.Run(
s => fibonacci(s, 4, n => Console.WriteLine(n)),
false);
Console.WriteLine("Fibonacci: {0}", r);
/*
4
3
2
1
0
1
Fibonacci: 5
2
1
0
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment