Re: Euphoria 4.0 debugger
- Posted by marky1124 Mar 24, 2009
- 792 views
Hi Bernie,
Thank you for your reply. I fear that you have misunderstood my request. I know how to view the contents of a sequence and how it is displayed with both the numeric value and the ascii character per byte. My request is to have a method to tell the debugger to display the sequence as an ascii string.
For example take this Euphoria code
with trace sequence URL URL = "http://openeuphoria.org" trace(1) ? 1/0
Now in the debugger when I type ?URL it displays
URL={104h,116t,116t,112p,58:,47/,47/,111o,112p,101e,110n,101e,117u,112p,104h, 111o,114r,105i,97a,46.,111o,114r,103g}
which is also how it is displayed in the ex.err file. I am asking for a way in which to ask the debugger to display it as
URL = "http://openeuphoria.org"
Cheers,
Mark