Details
Assignee
UnassignedUnassignedReporter
Zac SpitzerZac SpitzerNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
New
Details
Details
Assignee
Unassigned
UnassignedReporter
Zac Spitzer
Zac SpitzerNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Created 30 November 2020 at 16:23
Updated 30 November 2020 at 16:26
https://coldfusion.adobe.com/2020/11/labelled-loops/
<cfscript> xyz : for(i=110;i<115;i++){ abc : for(j=10;j<20;j++) { writeDump(i); writeOutput("<br>"); if(j%3 == 0) continue xyz; writeDump(j); } writeDump("<br>"); } </cfscript>
<cfscript> // breaking out using a label x = 0; WhileLabel: while (x < 10){ writeOutput("x is #x#<br>"); switch (x){ case 1: break; case 3: break WhileLabel; } x++; writeOutput("end of of loop<br>"); } writeOutput("After loop, x is #x#<br>"); </cfscript>