9 lines
138 B
Text
9 lines
138 B
Text
const repChar:string = "*";
|
|
const maxIters = 5;
|
|
for(i=1;maxIters;1){
|
|
set str:string = "";
|
|
for(o=1;i;1){
|
|
str+=repChar;
|
|
}
|
|
log(str);
|
|
}
|