-
-
Save profesor79/68ecbd8bed0534111221ed0854267f5f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//orginal line | |
Enumerable.Range(1, 100).ToList().ForEach(i => Console.WriteLine( i % 3 * i % 5 == 0 ? (i % 3 == 0 ? "Fizz" : "") + (i % 5 == 0 ? "Buzz" : "") : i.ToString())); | |
// chopped so we can see it without scrolling | |
Enumerable | |
.Range(1, 100) | |
.ToList() | |
.ForEach(i => Console.WriteLine( | |
i % 3 * i % 5 == 0 | |
? (i % 3 == 0 ? "Fizz" : "") + (i % 5 == 0 ? "Buzz" : "") | |
: i.ToString())); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment