sicp
sicp copied to clipboard
Solution to Exercise 4.33
function an_integer_between(low, high) {
require(low <= high);
return amb(low, an_integer_between(low+1, high));
}