RosettaCodeData/Task/User-input-Text/PicoLisp/user-input-text.l

5 lines
165 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
(in NIL # Guarantee reading from standard input
(let (Str (read) Num (read))
(prinl "The string is: \"" Str "\"")
(prinl "The number is: " Num) ) )