Sascha wrote:
> sorry, i certainly could 've seen the solution - but couldn't find it now
;-)
>
> >> f: func [w ] [either [ value? 'w ] [ do 'w][print "no way..."]]
> >> value? 'm
> == false
> >> x
> == 10
> >> f x
> == 10
> >> f m
> ** Script Error: m has no value.
> ** Where: f m
> >> f 'm
> == m

>> f: func ['w] [either value? w [do w][print "no way..."]]
>> f xyz
no way...
>> z: does [print "hi!"]
>> f z
hi!

Andrew Martin
Yes, way...
ICQ: 26227169 http://members.nbci.com/AndrewMartin/
-><-


-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to