PRINT-FORM
==========
syntax: (print-form <object> <output-stream>)
; Babylon Lisp
(print <object> <output-stream>)
; Common 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.