- Jan
- 617
- 15
Working on a solution for Scott's post. Had to make some more sample data so I wrote a quick btm.
I've tried with a trailing space enclosed in backquotes (as in the code above) and also with a space after the %c followed by double backquotes. Neither will output spaces between the echos. In other words, I'm getting this
Instead of this
If I put an additional space between the ECHOS and the %c, I do get spaced output, but I want trailing spaces, not leading spaces.
Edit: Problem is in both TCC 13.04.63 and 14.00.23 for Windows XP SP3
Code:
do a = 1 to 100 (
do b = 1 to %@random[14,20] (
set c=%@convert[10,16,%@random[0,255]]
iff %@len[%c]== 1 then
echos 0%c` `
else
echos %c` `
endiff
)
echo.
)
Code:
F000780382478ABAA474DF8BEC5B31CA6A8C1642
7A8766DF9639DB844D3AB253A8DCAE1572
F26AD92D781FBEE6ED4EFC14958E25
7A7150FD3DEC99E3AE32419FD6B59E7818C9
2A5BC47BBE76B63C40AB533D9EBC4C2B4C59D7
C6A7F358AF3C3FD5CCB3CB51023F66D54963C5
Code:
0B 02 59 F5 68 18 57 6A 48 B6 C7 E4 68 DB 3F 30
52 68 2A 45 3C 0D FB AB 12 E8 EF D9 77 49 00
7F 04 41 B0 A8 AB 65 19 5B 52 58 2E FA 3A BF
C0 AF D2 68 EE E0 76 54 13 46 D4 17 0F 78 72 4B EC
DC 9A 12 16 13 A0 F5 40 F8 D5 AC 82 44 64
4A 30 84 61 29 BF C0 4E 13 E7 BA AA E5 FA 8A 59 81 AF 6F
Edit: Problem is in both TCC 13.04.63 and 14.00.23 for Windows XP SP3