ronin/examples/projects/print-files.lisp
2020-05-20 06:37:22 +09:00

11 lines
150 B
Common Lisp

(clear)
(defn print-file
(name index)
(fill
(text 0
(add
(mul index 40) 50) 40 name) "red"))
(each
(files) print-file)