sicp icon indicating copy to clipboard operation
sicp copied to clipboard

Solution to Exercise 4.33

Open jonathantorres opened this issue 1 year ago • 0 comments

function an_integer_between(low, high) {
    require(low <= high);
    return amb(low, an_integer_between(low+1, high));
}

jonathantorres avatar Apr 01 '23 18:04 jonathantorres