Skip to content

Instantly share code, notes, and snippets.

@dialalpha
dialalpha / gist:4504024
Last active December 10, 2015 22:38 — forked from Pharylon/gist:4502183
FizzBuzz. Can be written in shorter lines of code. But I find this implementation to be clearer.
using System;
namespace Dialalpha.FizzBuzz
{
class Program
{
static void Main(string[] args)
{
bool fizz = false, buzz = false;
for (int i = 1; i <= 100; ++i)