| |||||||||||
get_line(-result)get_line(+stream, -result)get_line/1/2 reads a line. Fails on EOF.
Argumentsresult atom stream atom
ExampleCopy a file. Invoke e.g. with minerva -l copyfile aaa.txt bbb.txtmain([Infile,Outfile|_]) :- open(Infile,read,Instream), open(Outfile,write,Outstream), copy(Instream,Outstream), close(Instream), close(Outstream).
Standard
This predicate is not part of the ISO-Prolog Standard.
See alsoregular expression, match/2/3, match_all/3, substitute/4, substitute_all/4, split/2/3, chop/2, get_line/1/2, | |||||||||||
| |||||||||||
| Back> |
|