8 lines
119 B
V
8 lines
119 B
V
fn main() {
|
|
for i in 1..6 {
|
|
for _ in 1..i+1 {
|
|
print("*")
|
|
}
|
|
print("\n")
|
|
}
|
|
}
|