Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Please help me to promote REBOL

From: antonr:iinet:au at: 9-Nov-2003 22:09

Same idea. If you have an error you must disarm it before looking at it. Let's go back to the tried and true method which I use all the time: either error? set/any 'err try [...][ ; An error happened err: disarm err probe err ][ ; No error ; err is set to the result of doing the ; code block, though, so ; err might have a value or unset! ] Anton.