[REBOL] Private attributes

1999-11-26 Thread lmecir
Hi, Rebols! tried this: trial: func [par] [ do func [/local p] [ p: par make object! [ prt: func [] [print p] ] ] ] trial2: func [par /local p] [ p: par make object! [ prt: func [] [print p] ] ] with the following results: a: trial 1 a/prt 1 b: trial 2 b/prt 2 a/prt 1 c:

[REBOL] Private attributes Re:

1999-11-26 Thread icimjs
Hi Ladislav, At 06:32 PM 11/26/99 +0100, you wrote: Hi, Rebols! tried this: trial: func [par] [ do func [/local p] [ p: par make object! [ prt: func [] [print p] ] ] ] trial2: func [par /local p] [ p: par make object! [

[REBOL] Private attributes Re:(2)

1999-11-26 Thread lmecir
Elan, THX for explanation. Sorry for the inconvenience, I didn't use my computer to send the last e-mail. Ladislav