[plt-scheme] Re: Text-contents to a function variable

From: Thomas Chust (chust at web.de)
Date: Thu Jan 14 16:19:24 EST 2010

Avi wrote:
> What are nested loops?
> [...]

Loops that are nested within each other, for example:

(for ([i (in-range 1 4)])
  (for ([j (in-range 1 4)])
    (printf "i: ~a, j: ~a~%" i j)))

Ciao,
Thomas


-- 
When C++ is your hammer, every problem looks like your thumb.


Posted on the users mailing list.