A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
10
Task/Inverted-syntax/Common-Lisp/inverted-syntax-1.lisp
Normal file
10
Task/Inverted-syntax/Common-Lisp/inverted-syntax-1.lisp
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
(eval-when (:compile-toplevel :load-toplevel :execute)
|
||||
(defun unrev-syntax (form)
|
||||
(cond
|
||||
((atom form) form)
|
||||
((null (cddr form)) form)
|
||||
(t (destructuring-bind (oper &rest args) (reverse form)
|
||||
`(,oper ,@(mapcar #'unrev-syntax args)))))))
|
||||
|
||||
(defmacro rprogn (&body forms)
|
||||
`(progn ,@(mapcar #'unrev-syntax forms)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue