11 lines
218 B
Text
11 lines
218 B
Text
; here-document.lsp
|
|
; oofoe 2012-01-19
|
|
; http://rosettacode.org/wiki/Here_document
|
|
|
|
(print (format [text]
|
|
Blast it %s! I'm a %s,
|
|
not a %s!
|
|
--- %s
|
|
[/text] "James" "magician" "doctor" "L. McCoy"))
|
|
|
|
(exit)
|