Document the time module.

This commit is contained in:
Dominik Pantůček 2023-04-08 22:27:39 +02:00
parent 9e1291216d
commit dc82ba720c

View file

@ -73,3 +73,20 @@ remainder with leading whitespace removed.
### Tag
### Time
(import util-time)
Compatibility module for the differences between chicken scheme
version 5.2 and earlier and 5.3 and on.
(current-util-milliseconds)
Returns the number of milliseconds since process startup.
Under chicken scheme <5.3 it uses ```current-milliseconds``` and for
chicken scheme >=5.3 it uses ```current-process-milliseconds```.
Without this module compilation with ```current-milliseconds```
results in warnings on chicken scheme >=5.3 and compilation under
chicken scheme <5.3 results in error with
```current-process-milliseconds```.