Basic constructor macro for plexeme-line-comment structures.
(make-plexeme-line-comment [:content <content>])
This is the usual way to construct plexeme-line-comment structures. It simply conses together a structure with the specified fields.
This macro generates a new plexeme-line-comment structure from scratch. See also change-plexeme-line-comment, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-plexeme-line-comment (&rest args) (std::make-aggregate 'plexeme-line-comment args '((:content)) 'make-plexeme-line-comment nil))
Function:
(defun plexeme-line-comment (content) (declare (xargs :guard (nat-listp content))) (declare (xargs :guard t)) (b* ((content (mbe :logic (nat-list-fix content) :exec content))) (cons :line-comment (list content))))