Eliminate the separately maintained Lisp system version number.
[sod] / src / package.lisp
index 75dc7fd..d6e47f4 100644 (file)
 (cl:defpackage #:sod
   (:use #:common-lisp
        #:sod-utilities
-       #:optparse
        #:sod-parser))
 
+(cl:in-package #:sod)
+
+(export '*sod-version*)
+(defparameter *sod-version* sod-sysdef:*version*
+  "The version of the SOD translator system, as a string.")
+
 ;;;----- That's all, folks --------------------------------------------------