5 lines
59 B
Fennel
5 lines
59 B
Fennel
|
|
(for [i 1 4]
|
||
|
|
(for [j 1 i]
|
||
|
|
(io.write "*"))
|
||
|
|
(print))
|