mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-05 18:12:09 +01:00
15 lines
249 B
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));
|
||
|
}
|
||
|
}
|