git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5983 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
283 B
Java
15 lines
283 B
Java
import profiletest.*;
|
|
|
|
public class profiletest_runme {
|
|
|
|
System.loadLibrary("profiletest");
|
|
|
|
public static void main(String argv[]) {
|
|
|
|
long a = profiletest.new_A();
|
|
long b = profiletest.new_B();
|
|
for (int i=0; i<1000000; i++) {
|
|
a = profiletest.B_fn(b, a);
|
|
}
|
|
}
|
|
}
|