RosettaCodeData/Task/Here-document/NewLISP/here-document.newlisp
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

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)