Hi guys,
I am currently learning this language and have 2 simple questions.
1: What is the equivalent of "break" and "continue" statement in Racket?? I can't find it anywhere on the site's documentation nor online on other sites.
2: Is there a way to create new variable using a loop in Racket? In other languages you can do something like:
for (i= 0; i<=10; i++)
{
newvar[i] = i+1;
}
Where for each iteration of loop, it creates new variables: newvar[0], newvar[1], newvar[2]...ect
Thanks,
Limiter