RosettaCodeData/Task/User-input-Graphical/PicoLisp/user-input-graphical.l

11 lines
274 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
(and
(call 'sh "-c"
(pack
"dialog \
--inputbox 'Input a string' 8 60 \
--inputbox 'Input a number' 8 20 \
2>"
(tmp "dlg") ) )
(split (in (tmp "dlg") (line)) "^I")
(cons (pack (car @)) (format (cadr @))) )