- May
- 13,547
- 197
I couldn't think of a better title for the post. I haven't got a clue what's happening below.
It's the same without the extra parentheses.
Code:
v:\> (do i=1 to 5 ( echo %i ))
1
2
3
4
5
v:\> timer (do i=1 to 5 ( echo %i ))
Timer 1 on: 12:54:17
6
6
6
6
6
Timer 1 off: 12:54:17 Elapsed: 0:00:00.003
It's the same without the extra parentheses.
Code:
v:\> do i=1 to 5 ( echo %i )
1
2
3
4
5
v:\> timer do i=1 to 5 ( echo %i )
Timer 1 on: 12:53:42
6
6
6
6
6
Timer 1 off: 12:53:42 Elapsed: 0:00:00.004