RosettaCodeData/Task/Loops-While/ColdFusion/loops-while-2.cfm

7 lines
93 B
Text
Raw Permalink Normal View History

2014-01-17 05:32:22 +00:00
<cfscript> i = 1024;
2013-04-10 21:29:02 -07:00
while( i > 0 )
{
writeOutput( i + "< br/ >" );
}
</cfscript>