Determines the Version supported by the installed library
import std.format: format; const libVer = versionOfLibrary; const bindVer = versionOfBindings; assert(libVer == bindVer, "API version mismatch between library (%s) and bindings (%s)".format(libVer, bindVer));
See Implementation
Determines the Version supported by the installed library