Here's a weekend challenge if your bored and/or if its raining where you are (it is here) ... here's the challenge:

Write a single "For" loop with one and only one statement in it -- and no user-defined functions, no built-in functions, and no if-then, iif statements -- that produces the following output:

0 1 2 3 4 5 6 6 5 4 3 2 1 0

The for-loop has to be instrumental in producing the output (In other words, this solution, is not correct:

for $x = 1 to 1
?"0 1 2 3 4 5 6 6 5 4 3 2 1 0"
next

If you want to play, just post your code, then we can all join in and maybe golf it down some ...

-Shawn