ronin/examples/arrays.lisp
2019-07-13 17:58:04 +02:00

8 lines
146 B
Common Lisp

(print (map (lambda (a) (add a 1)) (1 2 3)))
(
(clear)
(map (lambda (a)
(stroke (rect (mul a 30) 20 50 50) 1 "red"))
(5 10 15 20))
)