Code:
 Does anyone know what other 
languages Java supports to run inline? 

I know you can do somthing
like this to run a native method

  public class Native{
    /* the static initializer ensures that the native library 
       will be loaded before the methood is called
   */
    
     static{
        System.loadLibrary(NativeLibrarylib);
    }
     
   public void nativeMethod(); //native method protype
  }