Loops/N plus one half: Difference between revisions

Content added Content deleted
(added common lisp and ruby)
Line 76: Line 76:
With script:
With script:
<cfscript>
<cfscript>
for( i = 1; i <= 10; i++ )
for( i = 1; i <= 10; i++ ) //note: the ++ notation works only on version 8 up, otherwise use i=i+1
{
{
writeOutput( i );
writeOutput( i );