Read a file line by line: Difference between revisions

Added PicoLisp
(→‎{{header|Perl}}: Added PureBasic)
(Added PicoLisp)
Line 360:
process($_);
}</lang>
 
=={{header|PicoLisp}}==
<lang PicoLisp>(in "foobar.txt"
(while (line)
(process @) ) )</lang>
 
=={{header|PureBasic}}==
<lang PureBasic>FileName$ = OpenFileRequester("","foo.txt","*.txt",0)
Anonymous user