summaryrefslogtreecommitdiff
path: root/console/hello.cs
blob: e4b9fe1830e9e95eed3bba16313fe36bad1d8853 (plain)
1
2
3
4
5
6
7
8
9
using System;

public class HelloWorld
{
  public static void Main(string[] args)
  {
    Console.WriteLine("Hello, World!");
  }
}