Metronome: Difference between revisions

Added 11l
(Added Wren)
(Added 11l)
Line 14:
If the language has no facility to output sound, then it is permissible for this to implemented using just the visual indicator.
<br><br>
 
=={{header|11l}}==
{{trans|Python}}
 
<lang 11l>F main(bpm = 72, bpb = 4)
V t = 60.0 / bpm
V counter = 0
L
counter++
I counter % bpb != 0
print(‘tick’)
E
print(‘TICK’)
sleep(t)
 
main()</lang>
 
=={{header|Ada}}==
1,481

edits