view tests/js-timer/timer-single.js @ 425:70b0c9e40131

Irccd: import Duktape 2.0.1, closes #636
author David Demelier <markand@malikania.fr>
date Thu, 09 Feb 2017 18:44:22 +0100
parents 6635b9187d71
children
line wrap: on
line source

count = 0;

function onLoad()
{
    t = new Irccd.Timer(Irccd.Timer.Single, 500, function () {
        count += 1;
    });

    t.start();
}