Hi Experts,
I am trying to generate symbol list of each symbol of length 1, however it does work till 16 & considers only symbol till `p but fails when length is more than 16.
L1:-16?1; //works asc L1 //
ab
cd
ef
gh
ij
kl
mn
o`p
L1:-17?`1; //'length error
Same is the case with , when we try to create a symbol list of each symbol of length 2.
asc -256?2 //generate symbol list with combination till ....
pp
asc -257?`2 //'length error
My question is why does it considers symbols till _ `p _ only ?
Thanks,
Vajindar.