#%private/steel/print
this module is in the prelude and therefore automatically available when running steel.
displayln
Displays the given argument(s), with a space between them, finishing with a new line.
Example
(displayln "Hello world!") ;; Prints "Hello world!"
(displayln "foo" "bar") ;; Prints "foo bar"