Skip to content

Instantly share code, notes, and snippets.

@Quahu
Created April 29, 2018 02:28
Show Gist options
  • Save Quahu/2a91ba05c6ffe7d6751b01da1ecfc992 to your computer and use it in GitHub Desktop.
Save Quahu/2a91ba05c6ffe7d6751b01da1ecfc992 to your computer and use it in GitHub Desktop.
Enumerable.Range(1, 100).Select(x => x % 15 == 0 ? "FizzBuzz" : x % 3 == 0 ? "Fizz" : x % 5 == 0 ? "Buzz" : x.ToString()).ToList().ForEach(Console.WriteLine);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment