in reply to Saving data to file
and thenmy @data = (1,0,1,2,3,4,5,6,7,8,9,11,2,2,3,34,5,6,7,8,81);
or evenfor (0 ... $#data) { output($data[$_]);
Update: Sorry for posting untested code - of course, that should read formy $element ...for $element (@data) { output($element); }
|
|---|