ChaiScript/src/work.chai

11 lines
102 B
ChaiScript

def do_chai_work()
{
var i = 0;
for (var k = 0; k<100000; ++k)
{
i += k;
}
print(i);
}