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

5 lines
72 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(dotimes (i 5)
(dotimes (j (+ i 1))
(write-char #\*))
(terpri))