You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
waf_old/playground/swig/extend/java/Foo.java

15 lines
249 B
Java

package foo.bar.pouet;
class Foo {
public Foo() {
// TODO how to test the library from java?
}
public static void main(String[] args) {
System.loadLibrary("_test_swig_waf");
A test = new A();
System.out.println(test.add(17, 28));
}
}