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