RosettaCodeData/Task/Metronome/PicoLisp/metronome-1.l
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

9 lines
288 B
Text

(de metronome (Bpm)
(if (fork)
(let Pid @
(for Pendulum '(" /" . ("^H^H\\ " "^H^H /" .))
(tell Pid 'call "/usr/bin/beep" "-f" 440 "-l" 40)
(prin Pendulum)
(T (key (*/ 30000 Bpm)) (tell Pid 'bye)) )
(prinl) )
(wait) ) )