Outdated egg!
This is an egg for CHICKEN 3, the unsupported old release. You're almost certainly looking for the CHICKEN 4 version of this egg, if it exists.
If it does not exist, there may be equivalent functionality provided by another egg; have a look at the egg index. Otherwise, please consider porting this egg to the current version of CHICKEN.
loop
Description
The Common Lisp loop macro.
Author
Requirements
None
Download
Documentation
[syntax] (loop CLAUSE ...)Executes the forms in CLAUSE ... repeatedly. Most loop features of CLtL2 (Common Lisp the Language, 2nd Edition) are provided. For more information see the Common Lisp Hyperspec.
Example
(loop with a = 0 and b = -1 while (< a 10) sum a into foo do (set! a (+ a 1)) finally (return (list foo b))) ;=> (45 -1)
License
Copyright (C) 2002 Heinrich Taube (taube@uiuc.edu) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.