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

[REBOL] Re: A hard question

From: lmecir:mbox:vol:cz at: 3-Feb-2001 22:07

Hi Larry, to be a solution, HARD must pass any test. Let's try: arg1: func [x] [return make error! x] arg2: "some error" probe disarm arg1 arg2 The result is: make object! [ code: 800 type: 'user id: 'message arg1: "some error" arg2: none arg3: none near: [return make error! x] where: none ] while the result of HARD is:
>> probe disarm hard :arg1 arg2
** Script Error: Invalid argument: s ** Where: x ** Near: return make error! x The question is, if HARD could really meet the requirements.