RosettaCodeData/Task/Loops-Foreach/C-Shell/loops-foreach.csh

5 lines
101 B
Tcsh
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
set collection=(first second third fourth "something else")
foreach x ($collection:q)
echo $x:q
end