15 lines
326 B
Common Lisp
15 lines
326 B
Common Lisp
;;;; cl-scopes/steps - here comes the real action
|
|
|
|
(defpackage :scopes/steps
|
|
(:use :common-lisp)
|
|
(:local-nicknames (:config :scopes/config))
|
|
(:export #:config
|
|
#:name #:process))
|
|
|
|
(in-package :scopes/steps)
|
|
|
|
(defclass config (config:base)
|
|
())
|
|
|
|
(defclass process ()
|
|
((name :initarg :name :reader name)))
|