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

[REBOL] Re: manipulating values in blocks

From: hugues:moisy:geosignal at: 29-Nov-2002 11:12

Hello All, Thanks for all your responses. I've found another way to solve my problem, thanks to you all
>> blk: [1 17 63 113 145]
== [1 17 63 113 145]
>> >> for i 1 ((length? blk) - 1) 1 [
[ startseg: first blk [ endseg: second blk [ print [startseg endseg] [ blk: next blk [ ] 1 17 17 63 63 113 113 145 == [145]
>>
i'm a beginner in rebol, and rebol is amazing ! Hugues