- Jan
- 617
- 15
TCC 16.03.53 Windows XP [Version 5.1.2600]
From the command line, the following commands work...
and both print out
Wrapping either in a DO...
causes failure
I've tried various other incarnations including using the %= universal escape sequence.
From the command line, the following commands work...
Code:
echo `</test>`
echo ^</test^>
Code:
</test>
Wrapping either in a DO...
Code:
do i = 1 to 5 ( echo `</test>` )
do i = 1 to 5 ( echo ^</test^> )
Code:
TCC: (Sys) The system cannot find the file specified.
""
TCC: (Sys) The system cannot find the file specified.
""
TCC: (Sys) The system cannot find the file specified.
""
TCC: (Sys) The system cannot find the file specified.
""
TCC: (Sys) The system cannot find the file specified.
""
I've tried various other incarnations including using the %= universal escape sequence.