xxxxxxxxxx
function count(start, end)
{
if (start <= end)
write("counter = " + start + "\n");
count(start + 1, end);
}
count(1, 3);