7 lines
79 B
Swift
7 lines
79 B
Swift
|
|
for i in 1...5 {
|
||
|
|
for j in 1...i {
|
||
|
|
print("*")
|
||
|
|
}
|
||
|
|
println()
|
||
|
|
}
|