RosettaCodeData/Task/Loops-For/C-Shell/loops-for.csh

7 lines
73 B
Tcsh

foreach i (`jot 5`)
foreach j (`jot $i`)
echo -n \*
end
echo ""
end