> For the complete documentation index, see [llms.txt](https://java-util.k43.ch/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://java-util.k43.ch/examples/timer.md).

# Timer

### KTimer Class Overview

* Simple timer with up to nanosecond precision

### Example

```java
KTimer timer = new KTimer();
K.waitSeconds(1);
KLog.info("Waited {} ms", timer.getElapsedMilliseconds());
```
