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