RosettaCodeData/Task/Loops-Foreach/Mathematica/loops-foreach.math

6 lines
92 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
s = (StringSplit@Import["ExampleData/USConstitution.txt"])[[1;;7]];
Do[
Print@i,
{i, s}
]