foreach
(foreach entry lst [ exprA
exprB ... ] )
This function iterates over all items the lst
list, and processes all expressions using each item.
Arguments |
entry a Lisp variable to receive the next item of
lst |
Return |
the value of last evaluated expression |
Example |
(foreach item '(1 2 3 4
5) |
Remarks |
entry variable is local to the (foreach ...) scope ! |
© Bricsys NV. All rights reserved. |