Skip to content

Instantly share code, notes, and snippets.

@WildGenie
Created November 6, 2019 13:09
Show Gist options
  • Save WildGenie/9611c9788a58841315447cbeb8b79765 to your computer and use it in GitHub Desktop.
Save WildGenie/9611c9788a58841315447cbeb8b79765 to your computer and use it in GitHub Desktop.
using System;
using System.Linq;
namespace FibonacciTest
{
public class Program
{
public static void Main()
{
// CODE CHANGES
foreach (var i in FibonacciGenerator.Fibonacci().Take(20))
{
Console.WriteLine(i);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment