gerd
11/2/2016 - 2:30 PM

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

x = 0;
do {
 x = x+1;
 WriteOutput(x);
} while (x LTE 0);
// OUTPUTS 1