Function: getwalltime
Section: programming/specific
C-Name: getwalltime
Prototype:
Help: getwalltime(): time (in milliseconds) since the UNIX Epoch.
Doc: returns the time (in milliseconds) elapsed since the UNIX Epoch
 (1970-01-01 00:00:00 (UTC)).
 \bprog
 my (t = getwalltime());
 ...
 print("Time: ", getwalltime() - t);
 @eprog
