12 lines
256 B
Common Lisp
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)))
|
|
|