Skip to content

Instantly share code, notes, and snippets.

@hidori
Last active December 24, 2015 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hidori/b8fbf6b837a6dd2f8339 to your computer and use it in GitHub Desktop.
Save hidori/b8fbf6b837a6dd2f8339 to your computer and use it in GitHub Desktop.
C# Advent Calendar 2015-12-25 #1
using System;
namespace ConsoleApplication1
{
static class Program
{
static void Main(string[] args)
{
var random = new Random();
for (var i = 0; i < 100; i++)
{
var value = random.Next();
Console.WriteLine(value);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment