Files
glisp/lisp/kernel.gl
T
2026-09-04 05:45:48 -07:00

8 lines
230 B
Plaintext

;; -*- mode: lisp-data -*-
(fset 'test (cons 'macro (lambda (x) (declare (name test)) (list 'princ x))))
(prin1 (macroexpand-all '(lambda () (test x))
'((test . (lambda (x) (test x))))))
(write-byte ?\n)