The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
public class Hello {
  public static void main(String[] args) {
    String[][] tmp = new String[4][2];
    HelloHelper hi = null;
    if (args.length == 0) {
      hi = new HelloHelper();
    }
    else {
      // System.out.println("wrong number of args");
      hi = new HelloHelper(args[0]);
    }
    hi.printIt("happy", (float)2.3, tmp, hi);
  }
}