User Tools

Site Tools


prpl:endwhile

This is an old revision of the document!


<- PRPL reference <- Program Flow Control

endwhile

ArgumentsResultNotation
[ - ]

Description

Returns execution to the 'while' statement. Note that endwhile is only executed, if 'repeat' evaluated to true.

Examples

5 ->y 
while 
	<-y gt(0) 		#is y greater than zero? 
repeat 				#repeat this section of code 
	trace(<-y) 
	<-y sub(1) ->y 	#subtract 1 from y so we don't end in infinite loop 
endwhile 
prpl/endwhile.1506248811.txt.gz · Last modified: 2025/02/14 14:56 (external edit)