here is the macro, it is used to time 1 or more functions:
(it can be changed to a defun to make this happen but the count-form would need to default to 1,000,000 and it would need to stay optional):
(defmacro $ (form &optional (count-form 1000000)) `(time (dotimes (_ ,count-form) ((lambda () ,form)))))
for 1 function I run like this:($ (function))
for multiple functions I run like this:($ (progn (function) (function)))
how can I make it so I can run multiple functions like this:($ (function) (function))
any help is appreciated:)(it can be changed to a defun to make this happen but the count-form would need to default to 1,000,000 and it would need to stay optional):