6 lines
82 B
Forth
6 lines
82 B
Forth
|
|
: loopFor(n)
|
||
|
|
| i j |
|
||
|
|
n loop: i [
|
||
|
|
i loop: j [ "*" print ]
|
||
|
|
printcr ;
|