How can I implement loop in plt-scheme like in java-
for(int i=0;i<10;){
for(int j=0;j<3;){
System.out.println(""+j);
j++;
}
System.out.println(""+i);
i++;
}
Thanks in advance.
feedback
|
|
Your example in Java doesn't directly map onto the Scheme language by just learning a few new keywords as there aren't explicit constructs for implementing a for loop in Scheme (unless you write a construct yourself!). The cookbook way to do this in Scheme is to define a recursive function that loops over a list. Here's an example of how to do a for-loop style function in Scheme:
Taken from this page: Here's another link to a page that describes the ideas you need to understand to translate loops from imperative languages to Scheme: Scheme is a really interesting language to learn, you should also read the Structure and Interpretation of Computer Programs, which is the textbook formerly used for teaching Scheme at MIT. | |||||
feedback
|
|
In PLT you can do this:
| |||
|
feedback
|
|
The iteration construct in Scheme is " The example you gave would look something like this:
| |||||||
feedback
|
|
I'm suggesting you to take a look to Michele Simionato's "The adventures of a pythonista in schemeland". It's for python->scheme, but, it's really well written and, more importantly, it's from procedural->functional. | |||
|
feedback
|