https://github.com/jrincayc/ucblogo-code
Revision 439651e96adff1a23cdffd99afe833ac1731a88f authored by Joshua Cogliati on 22 November 2020, 22:49:35 UTC, committed by GitHub on 22 November 2020, 22:49:35 UTC
FEATURE-CI: Initial pass at having a CI build.
2 parent s 0b2175b + ae144ba
Raw File
Tip revision: 439651e96adff1a23cdffd99afe833ac1731a88f authored by Joshua Cogliati on 22 November 2020, 22:49:35 UTC
Merge pull request #66 from dmalec/FEATURE-CI
Tip revision: 439651e
while
WHILE tfexpression instructionlist			(library procedure)

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

back to top