RosettaCodeData/Task/Terminal-control-Preserve-screen/PicoLisp/terminal-control-preserve-screen.l
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

8 lines
126 B
Text

#!/usr/bin/picolisp /usr/lib/picolisp/lib.l
(call 'tput "smcup")
(prinl "something")
(wait 3000)
(call 'tput "rmcup")
(bye)