Get your own Java server
using System;

namespace HelloWorld
{
  class Program
  {
    static void Main(string[] args)
    {
      /* The code below will print the words Hello World
      to the screen, and it is amazing */
      Console.WriteLine("Hello World!");    
     }
  }
}

              
Hello World!