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

[REBOL] Re: more than one pain

From: carl:cybercraft at: 6-Jun-2002 8:54

On 06-Jun-02, Romano Paolo Tenca wrote:
> Hi, >> It's just a workaround, and you surely know it... >> >>>> a: [x y] >> == [x y] >>>> b: 1x2 >> == 1x2 >>>> c: true >> == true >>>> c': a/:c >> == x >>>> b/:c' >> == 1
And I don't think it works as Boleslav was wanting...
>> c: false
== false
>> b/:c'
== 1
> Or > pick b c
That does though.
>> b: 1x2
== 1x2
>> c: true
== true
>> pick b c
== 1
>> c: false
== false
>> pick b c
== 2 That you can do that but not...
>> b/:c
** Script Error: Invalid path value: false ** Near: b/:c is certainly inconsistant, if not an outright bug. All dependant on how paths are supposed to be imagined I guess... -- Carl Read