Skip to content

Instantly share code, notes, and snippets.

@rkttu
Created August 13, 2025 08:41
Show Gist options
  • Save rkttu/209a86bc63970116681443807104b963 to your computer and use it in GitHub Desktop.
Save rkttu/209a86bc63970116681443807104b963 to your computer and use it in GitHub Desktop.
Fibonacci calculation example (Top-Level statement style)
var n = 10;
var fib = new List<long> { 0, 1, };
for (var i = 2; i < n; i++)
fib.Add(fib[i - 1] + fib[i - 2]);
Console.WriteLine($"Fibonacci sequence up to {n} terms:");
Console.WriteLine(string.Join(", ", fib));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment