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

[REBOL] Re: bitset help

From: carl:cybercraft at: 29-Sep-2002 9:52

On 29-Sep-02, Romano Paolo Tenca wrote:
> Hi, Brett >> > That reverse will not fail on different system? >> > (big-endian/little endian) >> Another good point. I'm using Win NT 4.0 on Intel. What happens on >> other >> systems? > No one with Rebol running on Amiga?
Thought I could safely avoid this thread, but it seems not. (; On a 32Meg Amiga...
>> r: make bitset! 1024 * 1024 * 768
** Script Error: Not enough memory ** Near: r: make bitset! 1024 *
>> r: make bitset! 1024 * 1024
== make bitset! #{ 0000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000...
>> r: make bitset! 1024 * 1024 * 256
** Script Error: Not enough memory ** Near: r: make bitset! 1024 *
>> r: make bitset! 1024 * 1024 * 2
== make bitset! #{ 0000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000...
>> r: make bitset! 1024 * 1024 * 4
== make bitset! #{ 0000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000...
>> r: make bitset! 1024 * 1024 * 8
== make bitset! #{ 0000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000...
>> r: make bitset! 1024 * 1024 * 16
== make bitset! #{ 0000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000...
>> r: make bitset! 1024 * 1024 * 32
== ** Script Error: Not enough memory ** Near: ** CRASH (Should not happen) - Corrupt datatype: 120 View failed returncode 100 Happy now? (: -- Carl Read