This is an old revision of the document!
<- CRPL reference <- Utility Commands
| Arguments | Result | Notation | 
|---|---|---|
| Elapsed app time in ms |  – f1  | 
Pushes to the stack the number of milliseconds, as a floating point number, since the application started.
# Measure how long it takes to call a function
ElapsedTime ->startTime
@SomeFunctionCall
ElapsedTime ->stopTime
trace2("TIME: " <-stopTime sub (<-startTime))