Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/java/profiletest_runme.java
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

16 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);
}
}
}