import { setInterval } from "https://deno.land/x/xdg@v10.5.1/vendor/types/deno.d.ts";
Repeatedly calls a function , with a fixed time delay between each call.
// Outputs 'hello' to the console every 500ms
setInterval(() => { console.log('hello'); }, 500);