https://github.com/jrincayc/ucblogo-code
Revision a7d2a824aff2bd141e627200489d21b46d04fe0a authored by Barak A. Pearlmutter on 22 July 2020, 11:35:34 UTC, committed by Barak A. Pearlmutter on 22 July 2020, 19:36:15 UTC
1 parent 9d825e1
Raw File
Tip revision: a7d2a824aff2bd141e627200489d21b46d04fe0a authored by Barak A. Pearlmutter on 22 July 2020, 11:35:34 UTC
update configure.ac
Tip revision: a7d2a82
dodwhile
DO.WHILE instructionlist tfexpression			(library procedure)

	command.  Repeatedly evaluates the "instructionlist" as long as the
	evaluated "tfexpression" remains TRUE.  Evaluates the first input
	first, so the "instructionlist" is always run at least once.  The
	"tfexpression" must be an expressionlist whose value when evaluated
	is TRUE or FALSE.

back to top