OpenSDE Framework (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
299 B

  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. class Hello
  6. {
  7. static void Main()
  8. {
  9. System.Console.WriteLine("Hello World! (A simple C# program.)");
  10. }
  11. }