[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.