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

[REBOL] Sameness block and parse

From: rotenca::telvia::it at: 29-May-2002 21:56

The same which is true for string is true for hash and block and list! I must check if this mess the hash! It could be very useful.
>> ha: make hash! [1 2 3]
== make hash! [1 2 3]
>> parse/all ha [b:]
== false
>> b
== [1 2 3]
>> type? b
== block!
>> insert b 5
== [1 2 3]
>> ha
== make hash! [5 1 2 3] --- Ciao Romano