waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

Foo.java (249B)


      1 package foo.bar.pouet;
      2 
      3 
      4 class Foo {
      5 	public Foo() {
      6 		// TODO how to test the library from java?
      7 	}
      8 
      9 	public static void main(String[] args) {
     10 		System.loadLibrary("_test_swig_waf");
     11 		A test = new A();
     12 		System.out.println(test.add(17, 28));
     13 	}
     14 }