RosettaCodeData/Task/Loops-For/Common-Lisp/loops-for-2.lisp

5 lines
72 B
Common Lisp
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
(dotimes (i 5)
(dotimes (j (+ i 1))
(write-char #\*))
(terpri))