EMA-XPS Online


FOR

FOR
===

Syntax: (for ((<Var> [from <Zahl>]
             [downto | to <Zahl>] [by <Zahl>]))
             [(execute {<Form> ...})]
             [(collect {<Kollektor> ...})]
             [(result <Resultat-Ausdr>)])

Diese Funktion beschreibt Zyklen mit Laufvariablen.
Sie existiert nur in Babylon Lisp. In Common Lisp
muß man bei do, dolist, dotimes, loop und den
map-Funktionen nachschauen.

Beispiel:      >(for ((i from 1 to 5 by 3))
		      (execute (print-form i t)))
               1
               4
               NIL


EMA-XPS Online