Guest User

Untitled

a guest
Jun 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class HelloWorld {
  2. private native void print();
  3. public static void main(String[] args) {
  4. new HelloWorld().print();
  5. }
  6. static {
  7. System.loadLibrary("HelloWorld");
  8. }
  9. }
  10.  
  11. "-Djava.library.path"
Add Comment
Please, Sign In to add comment