what does ~> mean?

BlitzMax Forums/BlitzMax Beginners Area/what does ~> mean?

Rozek(Posted 2007) [#1]
Hello!

When trying to load a GIF image, I get an endless loop of lines starting with "~>" - does anybody know what that means? I guess that these are BlitzMax-internal error messages (or the attempt of an error message, at least)?


Mark Tiffany(Posted 2007) [#2]
I think the ~> is to do with the debugger...not sure


Brucey(Posted 2007) [#3]
Yep, it's debugger's output prefix.

That problem seems like either :

1) You are running a .debug application outside of a debugging environment (like the IDE) - which, if something causes the app to break (like an exception), expects there to be an actual DEBUGGER ready to catch it and perhaps show you the line that has crashed.

2) You are running the application inside the IDE, but for some reason the Pipe/stream between the application and the debugger is lost, causing it to dump it to the console.

1 is most likely. I often get it when running a .debug app in gdb.

HTH

:o)


Rozek(Posted 2007) [#4]
Brucey,

thanks for your explanation - indeed, case #1 applies ;-)


Grey Alien(Posted 2007) [#5]
approximately greather than? ;-)


Brucey(Posted 2007) [#6]
heh ;-)