Name: Anonymous 2024-05-19 6:25
Maybe in 1 to 10. And then -1 to -10 like a range of 9
function limit(x, lower_bound, upper_bound){
if (x<lower_bound)
return lower_bound;
if (x>upper_bound)
return upper_bound;
return x;
}
# rm -rf /