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

[REBOL] Re: Block Creation Re:

From: lmecir:geocities at: 24-Oct-2000 12:49

Hi, one comment: Make Block! doesn't do, what a beginner might expect it to. See the following example code: ; Example #1 code: [ a: make block! [[]] ] do code append first a 11 code Result of the execution: == [ a: make block! [[11]] ] ; Example #2 code: [ a: copy/deep [[]] ] do code append first a 11 code Result of the execution: == [ a: copy/deep [[]] ] Regards Ladislav