/*
 * Inscoper NBO Example: Get Version
 * =================================
 * This example demonstrates how to retrieve the version of the NBO library.
 *
 * Prerequisites:
 * -------------
 * 1. Installation: inscoper-nbo-<version>.jar must be on the classpath.
 */

// --8<-- [start:main_logic]
import com.inscoper.nbo.NBOUtils;

public class GetVersion {
    public static void main(String[] args) {
        // Identification string of the native library, loaded from inside the JAR
        System.out.println(NBOUtils.getVersion());
    }
}
// --8<-- [end:main_logic]
