[REBOL] Re: layout question
From: lmecir:mbox:vol:cz at: 25-Nov-2005 16:16
Cavva napsal(a):
>"new new" understood, thanks
>
>So, "vid-face" is a local variable defined in "system/view/vid" right?
>
>but i still don't understand why i can symply refer to "vid-face"
>without saying that is under "system/view/vid"
>
>if in the console i type "vid-face" i get an error ..
>
>--Carlo
>
Check this:
my-object: make object! [
a: 112233
set 'f func [] [a]
]
now if you do:
f ; == 112233
, but A is local to my-object