Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    print "Hello, world\n";
    
  2. or download this
    public class HelloWorld {
      public static void main( String args[] ) {
        System.out.println( "Hello, world\n" );
      }
    }