The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
public class HelloWorldNative
{

      private native void print();

      public static void main (String [ ] args) {
		  new HelloWorldNative().print();
      }

      static {
            System.loadLibrary ("HelloWorldNative") ;
      }
}