6 lines
103 B
Swift
6 lines
103 B
Swift
for var i = 1; i <= 5; i++ {
|
|
for var j = 1; j <= i; j++ {
|
|
print("*")
|
|
}
|
|
println()
|
|
}
|