start in timer%
Starts (or restarts) the timer. If the timer is already running, its alarm time is not changed.
( -> void
send a-timer start msec just-once?)
msec : exact integer in [0, 1000000000]
just-once? = : boolean#f
The timer's alarm expires after msec milliseconds, at which point
notify is called (on an event boundary). If just-once? is #f,
the timer expires every msec milliseconds until the timer is
explicitly stopped;11 otherwise, the timer expires only once.