# Scheduling
Implements functionality that schedules a call for later execution. All functions are added to the global scope.

Supported:
- [`setTimeout`](https://developer.mozilla.org/en-US/docs/Web/API/setTimeout)
- [`clearTimeout`](https://developer.mozilla.org/en-US/docs/Web/API/clearTimeout)

Not implemented:
- [`setInterval`](https://developer.mozilla.org/en-US/docs/Web/API/setInterval)
- [`clearInterval`](https://developer.mozilla.org/en-US/docs/Web/API/clearInterval)
