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

5 lines
165 B
Text
Raw Permalink Normal View History

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