The difference between:
        c
    and:
        :c
    is that ":c" doesn't evaluate the value of "c".

>> o: make object! [m: 123]
>> c: first [o/m]
== o/m
>> probe :c
o/m
== o/m
>> probe c
123
== 123

>> f: func [arg] [print ["I'm F!" arg "I've been evaluated!"]]
>> f 123
I'm F! 123 I've been evaluated!
>> probe :f
func [arg][print ["I'm F!" arg "I've been evaluated!"]]

Andrew Martin
ICQ: 26227169 http://valley.150m.com/
-><-


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

Reply via email to