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

[REBOL] Re: Script Error: get_func_name has no value

From: anton:lexicon at: 13-Apr-2002 0:58

The problem is that there is a space missing in your first set-word. You need to do this: get_func_name: make ... ^ (a space) See this console session:
>> f:make function! [][] ; a function that does nothing...
== []
>> f
** Script Error: f has no value ** Near: f
>> f: make function! [][] >> f >> <--- notice no error...
Anton.