diff --git a/misc/archive/hello.cs b/misc/archive/hello.cs new file mode 100644 index 000000000..f3850221a --- /dev/null +++ b/misc/archive/hello.cs @@ -0,0 +1,12 @@ +// Hello World in C# +// Compile into an assembly with 'mcs hello.cs'. +// Run with the Mono Interpreter 'mint hello.exe' or +// with the Mono JIT Compiler 'mono hello.exe'. + +class Hello +{ + static void Main() + { + System.Console.WriteLine("Hello World! (A simple C# program.)"); + } +}