I try to use special loop variable I with [CHAR].
With this minimal example:
: ex ( -- )
10 0 DO
[CHAR] I EMIT
LOOP
;
I expected '0123456789' to be printed but -obviously- I get 'IIIIIIIIII'
Is there a way to replace I with its value before [CHAR] gets executed?
I 48 + EMIT