Skip to content

Instantly share code, notes, and snippets.

@xplicit
Created May 3, 2016 14:02
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 xplicit/2224ad656e1d4830a13df16e609b747d to your computer and use it in GitHub Desktop.
Save xplicit/2224ad656e1d4830a13df16e609b747d to your computer and use it in GitHub Desktop.
using System;
using System.IO;
using System.Threading;
for(int i=0;i<10;i++)
{
Console.WriteLine("i={0}",i);
Thread.Sleep(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment