https://github.com/jrincayc/ucblogo-code
Revision 5d18e80864eb0edade94c46f6e180952129f0f25 authored by Joshua J. Cogliati on 28 December 2020, 17:31:21 UTC, committed by Joshua J. Cogliati on 28 December 2020, 17:31:21 UTC
2 parent s 707422d + d8fc446
Raw File
Tip revision: 5d18e80864eb0edade94c46f6e180952129f0f25 authored by Joshua J. Cogliati on 28 December 2020, 17:31:21 UTC
Merge remote-tracking branch 'origin/master' into release_6_2_work
Tip revision: 5d18e80
foreach
FOREACH data template					(library procedure)
(FOREACH data1 data2 ... template)

	command.  Evaluates the template list repeatedly, once for each
	member of the data list.  If more than one data list are given,
	each of them must be the same length.  (The data inputs can be
	words, in which case the template is evaluated once for each
	character.)

	In a template, the symbol ?REST represents the portion of the
	data input to the right of the member currently being used as
	the ? slot-filler.  That is, if the data input is [A B C D E]
	and the template is being evaluated with ? replaced by B, then
	?REST would be replaced by [C D E].  If multiple parallel slots
	are used, then (?REST 1) goes with ?1, etc.

	In a template, the symbol # represents the position in the data
	input of the member currently being used as the ? slot-filler.
	That is, if the data input is [A B C D E] and the template is
	being evaluated with ? replaced by B, then # would be replaced
	by 2.

back to top