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

[REBOL] Block vs List

From: Patrick::Philipot::laposte::net at: 19-Jun-2004 11:30

Hi List What is the difference between a block and a list? The only thing I've got from the Core manual is that a block is a "Blocks of values" and a list a "Linked lists". Is there a command that can be used on a block and cannot be used on a list?
>> a: [1 2 3 4]
== [1 2 3 4]
>> b: make list! [1 2 3 4]
== make list! [1 2 3 4]
>> type? a
== block!
>> type? b
== list! -- Regards Patrick