ronin/examples/random.lisp
2019-07-18 11:10:23 +09:00

17 lines
304 B
Common Lisp

; random
(
(clear)
(defn place
(rec)
(if
(gt rec 0)
(
(import "../static/crystal.jpg"
(rect
(random 200)
(random 200)
(random 200)
(random 200)))
(place
(sub rec 1)))))
(place 30))