lisp123456

Untitled

Aug 21st, 2021
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. (defclass process ()
  2. ((function :accessor process-function
  3. :initarg :function
  4. :initform #'identity)
  5. (state :accessor process-state
  6. :initarg :state
  7. :initform nil)))
  8.  
  9. (defclass custom-process (process)
  10. ((function :initform #'car)))
Advertisement
Add Comment
Please, Sign In to add comment