Guest User

Untitled

a guest
May 16th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Program {
  2.     private static native void showHello();
  3.     public static void main(String[] args) {
  4.         try {
  5.             System.loadLibrary("helloj");
  6.             showHello();
  7.         } catch (Exception ex) {
  8.             System.err.println("Error: " + ex.getMessage());
  9.         }
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment