Skip to content

Instantly share code, notes, and snippets.

@praeclarum
Created February 7, 2015 07:45
Show Gist options
  • Select an option

  • Save praeclarum/65736e9047be6025d003 to your computer and use it in GitHub Desktop.

Select an option

Save praeclarum/65736e9047be6025d003 to your computer and use it in GitHub Desktop.
using System;
namespace TestApps
{
public class HelloWorldApp
{
public static int Main (string[] args)
{
Console.WriteLine ("Hello, world. It's " + DateTime.Now);
return 0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment