"while not eof f do" but from the second line

Hi,

I would like to read an external file but not from the first line, from the second one.

Is there a simple way ?

Thanks

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
titane357's picture

Ok found it :   XX=1 while

Ok found it :

 
XX=1
while not eof f do
(
l = readline f
if XX > 2 do
(
...
)
XX +=1
)

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.