https://github.com/jrincayc/ucblogo-code
Raw File
Tip revision: 3c0acfb7440cb9aea93e56c9e5b135a010f0a617 authored by Barak A. Pearlmutter on 23 March 2023, 18:25:43 UTC
restrict uscan to numeric versions
Tip revision: 3c0acfb
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