9 lines
121 B
Rust
9 lines
121 B
Rust
fn main() {
|
|
for i in 0..5 {
|
|
for _ in 0..=i {
|
|
print!("*");
|
|
}
|
|
|
|
println!();
|
|
}
|
|
}
|