cl-scopes/storage/tracking.lisp
2024-04-18 19:46:47 +02:00

12 lines
256 B
Common Lisp

;;; cl-scopes/forge - may the forge be with you!
;;;; A Forth-like interpreter implemented in Common Lisp.
(defun hello ()
(format t "Hello Common Lisp - changed!"))
(defclass track () (
(taskid :initarg :taskid)
(username :initarg :username)))