[REBOL] Re: REBOL Enhancement Proposals (REPs)
From: joel:neely:fedex at: 26-Sep-2001 3:02
Hi, Andrew,
I was recently startled into believing that they're more than
similar...
>> something: []
== []
>> foreach item [a/b/c d/e] [append something :item]
== [a b c d e]
>> length? something
== 5
vs
>> something: []
== []
>> foreach item [a/b/c d/e] [append/only something :item]
== [a/b/c d/e]
>> length? something
== 2
Which, I'll admit, was quite a surprise to me!
-jn-
Andrew Martin wrote:
> > REBOL Enhancement Proposals
> > > >
> > #1 Immediate (paren) values in paths
>
> It also would be nice for string! values as well:
> a/"Bee"/c
> I think pekr was the first to suggest it. Also, a path!
> value could have more of the features of a block! value,
> as they are similar.
>
--
The hardest problem in computer science is finding a problem to
solve your solution.
-- Aaron Watters
joel'dot'FIX'PUNCTUATION'neely'at'fedex'dot'com