11 lines
270 B
Common Lisp
11 lines
270 B
Common Lisp
;;;; cl-scopes/shape - really abstract basic data shape definitions.
|
|
|
|
(defpackage :scopes/shape
|
|
(:use :common-lisp)
|
|
(:export #:record))
|
|
|
|
(in-package :scopes/shape)
|
|
|
|
(defclass record ()
|
|
((head :accessor head :initarg :head)
|
|
(data :accessor data :initform nil)))
|