RosettaCodeData/Task/Loops-For/XBS/loops-for.xbs

10 lines
138 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
const repChar:string = "*";
const maxIters = 5;
for(i=1;maxIters;1){
set str:string = "";
for(o=1;i;1){
str+=repChar;
}
log(str);
}