mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
17 lines
269 B
Java
17 lines
269 B
Java
|
// Test a simple static function with an `int' argument.
|
||
|
|
||
|
public class simple_int
|
||
|
{
|
||
|
public static native int nat (int z);
|
||
|
|
||
|
static
|
||
|
{
|
||
|
System.loadLibrary ("simple_int");
|
||
|
}
|
||
|
|
||
|
public static void main (String[] args)
|
||
|
{
|
||
|
System.out.println (nat (23));
|
||
|
}
|
||
|
}
|