EMA-XPS Online


PRINT

PRINT
=====

syntax: (print <object> <output-stream>)      
              ; Common Lisp
        (print-form <object> <output-stream>) 
              ; Babylon Lisp

This function outputs the symbolic expression 
<object>, which is given as argument, on the 
terminal. The arguments can be numbers, characters, 
strings, symbols and lists. Lists can only contain 
these data types too. The output is followed by a 
space and <object> will be returned.


EMA-XPS Online