Handle a signal: Difference between revisions

Added PicoLisp
(Added PicoLisp)
Line 255:
echo ++$n, "\n";
?></lang>
 
=={{header|PicoLisp}}==
Put the following into a file, set it to executable, and run it
<lang PicoLisp>#!bin/picolisp lib.l
 
(push '*Bye '(println (*/ (usec) 1000000)) '(prinl))
 
(let Cnt 0
(loop
(println (inc 'Cnt))
(wait 500) ) )</lang>
 
=={{header|Python}}==
Anonymous user