[DOS] "print" sequence showing *ascii* contents?
- Posted by Dan B Moyer <DANMOYER at PRODIGY.NET> Oct 29, 2000
- 427 views
Is there a library command somewhere, or a simple routine, or something that I'm missing, that would work like "print", to show the structure of a variable, but with all the "contents" translated into ascii so it's easier to see what has been put into any variable? (this is for debug purposes) So that, for instance, instead of seeing this as a result of "print"ing a variable: {{105,110,116,101,103,101,114},{97,116,111,109}, I would see (at least) this: {{{P,r,e,d,e,f,i,n,e,d, ,T,y,p,e,s}, {{i,n,t,e,g,e,r},{a,t,o,m}, {s,e,q,u,e,n,c,e},{o,b,j,e,c,t}},... I could make *much* better sense of any errors in assignment to a variable (or of construction) in the second instance than in the first. Dan Moyer