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