[REBOL] Re: http://www.rebol.net/cookbook/recipes/0038.html not working for newbie
From: greggirwin:mindspring at: 11-Jan-2004 20:49
Hi Kai, KP> ** Script Error: attempt has no value KP> ** Where: log-data KP> ** Near: attempt [write/append file data] ATTEMPT was added in one of the more recent versions. You can patch it in though. attempt: func [ {Tries to evaluate and returns result or NONE on error.} value ][ if not error? set/any 'value try :value [get/any 'value] ] -- Gregg