Content deleted Content added
m remove uncited claim |
KenricAshe (talk | contribs) <cfscript> blocks don't need indentation, dot notation doesn't require spaces, Application shouldn't be capitalized, and LT/LTE are outdated for cfscript |
||
Line 7:
<syntaxhighlight lang="cfm">
<cfscript>
</cfscript>
</syntaxhighlight>
Line 41:
<syntaxhighlight lang="cfm">
<cfscript>
</cfscript>
</syntaxhighlight>
Line 123:
==== For Loop ====
<syntaxhighlight lang="javascript">
for (i=1; i
WriteOutput(array[i]);
}
Line 142:
<syntaxhighlight lang="javascript">
x = 0;
while (x
x = x + 1;
WriteOutput(x);
Line 153:
x = 0;
do {
x = x + 1;
WriteOutput(x);
} while (x
// Outputs: 1
</syntaxhighlight>
|