fork download
  1. class Main {
  2. static Main() : void {
  3. Hello.hello(); // OK
  4. }
  5. }
  6.  
  7. class Hello {
  8. public static hello() : void {
  9. System.Console.WriteLine("Hello World!");
  10. }
  11. }
Success #stdin #stdout 0.01s 15968KB
stdin
Standard input is empty
stdout
Hello World!