Quote Originally Posted by Steve_88 View Post
untested and not thought out
debug dec2 VA/10,",",dec1 VA//10,13,10
The above post works fine...
Here's another version of the same thing, again, documented in the PBP manual...
va = 54321
debug (va dig 5), "," , (va dig 4) , "," , (va dig 3) , "," , (va dig 2) , "," , (va dig 1) , "," , (va dig 0) ,13 , 10

output would be
5,4,3,2,1

I'm sure you could modify the above to get what you want.