Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (defclass process ()
- ((function :accessor process-function
- :initarg :function
- :initform #'identity)
- (state :accessor process-state
- :initarg :state
- :initform nil)))
- (defclass custom-process (process)
- ((function :initform #'car)))
Advertisement
Add Comment
Please, Sign In to add comment