Compare commits
2 commits
765c4ecacc
...
c9226c4052
Author | SHA1 | Date | |
---|---|---|---|
c9226c4052 | |||
cc5f486df6 |
2 changed files with 12 additions and 1 deletions
10
meta-sentences.lisp
Normal file
10
meta-sentences.lisp
Normal file
|
@ -0,0 +1,10 @@
|
|||
(load "utils.lisp")
|
||||
|
||||
(defun main ()
|
||||
(loop with seen
|
||||
with fmt = (read-line)
|
||||
for len = 10 then (length sentence)
|
||||
for sentence = (format nil fmt len)
|
||||
until (member len seen)
|
||||
do (nunionf seen (list len))
|
||||
do (format t "~3d ~a~%" (length sentence) sentence)))
|
|
@ -629,7 +629,8 @@
|
|||
|
||||
(abbrevs dbind destructuring-bind
|
||||
mvbind multiple-value-bind
|
||||
mvsetq multiple-value-setq)
|
||||
mvsetq multiple-value-setq
|
||||
λ lambda)
|
||||
|
||||
;; not great
|
||||
(defmacro propmacro (propname)
|
||||
|
|
Loading…
Reference in a new issue