mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-22 16:29:11 +00:00
19 lines
321 B
Java
19 lines
321 B
Java
// Test to make sure the minimal invocation works.
|
|
|
|
public class invoke
|
|
{
|
|
public static native int val ();
|
|
|
|
static
|
|
{
|
|
System.out.println ("trying...");
|
|
System.loadLibrary ("invoke");
|
|
System.out.println ("loaded");
|
|
}
|
|
|
|
public static void main (String[] args)
|
|
{
|
|
System.out.println (val ());
|
|
}
|
|
}
|