EMA-XPS Online


READ-ONE-LINE

READ-ONE-LINE
=============

syntax: (read-one-line <input-stream> [<eof-value>])  	
             ; Babylon Lisp
        (read-line <input-stream> [<eof-value>])	
             ; Common Lisp

This function reads in a line of text terminated 
by a newline. It returns the line as a character 
string (without the newline character).

example: look to WITH-OPEN-FILE


EMA-XPS Online