User Tools

Site Tools


prpl:k

This is an old revision of the document!


<- PRPL reference <- Program Flow Control

K

ArgumentsResultNotation
number [ - number]

Description

Outer loop index. When “do” loops are nested, this pushes the value of the third-innermost loop onto the stack. Do not use outside of triply-nested loops.

Note that before the inner loops begin, after they end, or between inner loops, this value may need to be referred to with J or even I.

Examples

do(2 1) 
	do(4 3) 
		do(6 5) 
			I J K Trace3
		loop 
	loop 
loop 
prpl/k.1482230652.txt.gz · Last modified: 2016/12/20 05:44 by GoodMorning