class HelloWorld 
{ 
  native static void print(String s); 

  public static void main(String[] args) 
  { 
    System.loadLibrary("HelloWorld"); 
    print("Good morning!"); 
  } 
} 
