X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/1d8cc67a3f4ded443f5efc673a616883cbae9c50..54c017728489af16b13e13541e7cc53c985ca436:/src/package.lisp diff --git a/src/package.lisp b/src/package.lisp index 75dc7fd..a6b9785 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -26,7 +26,12 @@ (cl:defpackage #:sod (:use #:common-lisp #:sod-utilities - #:optparse #:sod-parser)) +(cl:in-package #:sod) + +(export '*sod-version*) +(defvar *sod-version* (asdf:component-version (asdf:find-system "sod")) + "The version of the SOD translator system, as a string.") + ;;;----- That's all, folks --------------------------------------------------