7 lines
81 B
Swift
7 lines
81 B
Swift
|
|
for i in 1..<6 {
|
||
|
|
for j in 1..<i+1 {
|
||
|
|
print("*")
|
||
|
|
}
|
||
|
|
println()
|
||
|
|
}
|