Function
make-timer function &rest arguments => timer
mp
A function
A set of arguments to function
A timer
make-timer function creates and returns an unnamed timer. The function argument is a function to be applied to the remaining arguments when the timer expires. Use the functionschedule-timer orschedule-timer-relative to set an expiration time. make-named-timer creates a named timer.
(setq timer
(mp:make-timer 'print 10 *standard-output*))
#<Time Event : PRINT>