Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Core 2.5.2 - Less aggressive evaluation - howto evaluate ?

From: rotenca:telvia:it at: 8-May-2002 1:01

Hi Cyphre,
> >> z: to-path 'system/schemes > == system/schemes > > >> type? first reduce [z] > == path! > >> type? do func [x][x] z > == path! > >> type? use [][z] > == path! > >> type? do [z] > == path! > > View 1.2.5.3.1 and Core 2.5.2.3.1
Gasp! Not a good situation in 2.5. In 2.5, I have only found:
>> type? first reduce reduce [z]
== object!
>> type? do reduce [z]
== object! If the path is global, one can also use
>> type? do mold z
== object!
>> type? do mold/only z
== object! --- Ciao Romano
> regards, > > Cyphre > > ----- Original Message ----- > From: "Romano Paolo Tenca" <[rotenca--telvia--it]> > To: <[rebol-list--rebol--com]> > Sent: Tuesday, May 07, 2002 7:39 PM > Subject: [REBOL] Re: Core 2.5.2 - Less aggressive evaluation - howto > evaluate ? > > > Hi Cyphre, > > > > > >> type? first reduce compose [(z)] > > > == object! > > > > > > Anyone? > > > > >> z: to-path 'system/schemes > > == system/schemes > > > > 1) > > > > >> type? first reduce [z] > > == object! > > > > 2) > > > > >> type? do func [x][x] z > > == object! > > > > 3) > > > > >> type? use [][z] > > == object! > > > > 4) > > > > >> type? do [z] > > == object! > > > > View 1.2.1.3.1 > > > > --- > > Ciao > > Romano > > > > > > -- > > To unsubscribe from this list, please send an email to > > [rebol-request--rebol--com] with "unsubscribe" in the > > subject, without the quotes. > > > > > > > > -- > To unsubscribe from this list, please send an email to > [rebol-request--rebol--com] with "unsubscribe" in the > subject, without the quotes. >
--- Ciao Romano