4 lines
72 B
Common Lisp
4 lines
72 B
Common Lisp
(dotimes (i 5)
|
|
(dotimes (j (+ i 1))
|
|
(write-char #\*))
|
|
(terpri))
|