* updated kpat (21.12.1 -> 21.12.2), untested
[t2-trunk.git] / misc / archive / hello.cs
blob5b35aa86582c31e0ba7e4b7051702145d605e983
1 // Hello World in C#
2 // Compile into an assembly with 'mcs hello.cs'.
3 // Run with the Mono Interpreter 'mint hello.exe' or
4 // with the Mono JIT Compiler 'mono hello.exe'.
5 //
6 // --- T2-COPYRIGHT-NOTE-BEGIN ---
7 // This copyright note is auto-generated by ./scripts/Create-CopyPatch.
8 //
9 // T2 SDE: scripts/Config
10 // Copyright (C) 2004 - 2007 The T2 SDE Project
11 // Copyright (C) 1998 - 2003 ROCK Linux Project
12 //
13 // More information can be found in the files COPYING and README.
14 //
15 // This program is free software; you can redistribute it and/or modify
16 // it under the terms of the GNU General Public License as published by
17 // the Free Software Foundation; version 2 of the License. A copy of the
18 // GNU General Public License can be found in the file COPYING.
19 // --- T2-COPYRIGHT-NOTE-END ---
21 class Hello
23 static void Main()
25 System.Console.WriteLine("Hello World! (A simple C# program.)");