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

[REBOL] List! series [Was: blank] Re:(2)

From: capolunghi:att at: 5-Oct-2000 13:51

gmassar: Your list didn't really disappear: if you do this..
>> list: make list! [1 2 3 4]
== make list! [1 2 3 4]
>> first list
== 1
>> remove list
== make list! [2 3 4]
>> first list
** Script Error: Out of range or past end. ** Where: first list
>> list
== make list! [] --- Is it gone??
>> head list
== make list! [2 3 4] ---- NO ! List is still there! Good luck, Joe