RosettaCodeData/Task/Loops-For-with-a-specified-step/C-Shell/loops-for-with-a-specified-step.csh
2023-07-01 13:44:08 -04:00

3 lines
39 B
Tcsh

foreach x (`jot - 2 8 2`)
echo $x
end