time
time — gives command execution times.
time (iterations, !command)
iterationsThe number of times to execute the command.
commandAny Gamma or Lisp command.
The number of seconds consumed performing the
command for the given number of
iterations.
This function performs the command for the given
number of iterations and returns the clock time
consumed. This does not break down the time into user and system time. Times
on successive calls to this function will differ slightly due to operating
system requirements, garbage collection and active timers.
Gamma>time(10, list(1,2,3));3.297225339338183403e_05Gamma>