gerd
11/2/2016 - 2:24 PM

From http://www.petefreitag.com/cheatsheets/coldfusion/cfscript/

x = 0;
while (x LT 5) {
	x = x + 1;
	WriteOutput(x);
}
//OUTPUTS 12345