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

[REBOL] How to Create a block of empty blocks?

From: tim::johnsons-web::com at: 18-Sep-2001 19:28

Hello All: I would like to initialize a block of given size with a number of empty blocks: example :
>> blks: make block! 3
== []
>> loop 3[append blks []]
== [] ; what I am try to get is: == [[][][]] What else do I need to do? TIA tim