18 lines
375 B
Common Lisp
18 lines
375 B
Common Lisp
;;; cl-scopes/forge - may the forge be with you!
|
|
|
|
;;;; A Forth-like interpreter implemented in Common Lisp.
|
|
|
|
(defpackage :scopes/forge
|
|
(:nicknames :scf)
|
|
(:use :common-lisp)
|
|
(:export #:hello))
|
|
|
|
(in-package :scopes/forge)
|
|
|
|
(defun hello ()
|
|
(format t "Hello Common Lisp - 2024-04-18"))
|
|
|
|
(defclass track () (
|
|
(taskid :initarg :taskid)
|
|
(username :initarg :username)))
|
|
|