mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-09-23 01:09:47 +02:00
See history at https://github.com/intrepidcs/libicsneo-examples/tree/v0.2.0-dev
11 lines
220 B
Java
11 lines
220 B
Java
public class Run {
|
|
static {
|
|
System.loadLibrary("icsneojava");
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
InteractiveExample example = new InteractiveExample();
|
|
example.run();
|
|
}
|
|
}
|