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

[REBOL] Re: reduce second [one two]

From: tim-johnsons::web::com at: 13-Jan-2009 15:28

On Tuesday 13 January 2009, Giuseppe Chillemi wrote:
> probe reduce second [one two]
I've never used 'reduce on a "singleton" value, which is what you are doing here: (evaluating right to left)
>> second [one two]
== two ;; get the value
>> probe get reduce second[one two]
2 == 2 Is this what you are after? cheers tim