Hi, How to go through a list or fetch element from a list in scheme?
How can I name each element (like we do for variables in java) in a list?
Thanks in advance.
I want to compare every point in a list to another point. So, as we do in java or python-
for(int i;i<list.size();i++){
if (list[i]> k){
//do something
}
}
How can I do similar thing in scheme?