4 lines
69 B
Tcl
4 lines
69 B
Tcl
|
|
for {set i 1} {$i <= 5} {incr i} {
|
||
|
|
puts [string repeat "*" $i]
|
||
|
|
}
|