questions:
   
   1.  per earlier responses:
        
            x:  make string! 100   

        creates a string of length 0 with 100 bytes of storage
        allocated to it. Is there any way to display this
        storage allocation?  Ditto for other datatypes.

   2.  is == exactly the same as strict-equal?  seems to be

   3.  is there any way to examine/dump the context at a given
          point within a script, or an interactive session? 

   4.  is there any way to set breakpoints in a script and/or
           single step for debugging?  the  halt command looks
            like it will sort of work, but is there anything that
            doesn't require editing the script each time?

    5.   from the dictionary:
       
                strict-not-equal?     value1 value2
   
                   Returns TRUE if the values are not equal and not of the same 
datatype.
  

          Shouldn't this read:

                Returns TRUE if the values are not equal *OR* not of the same datatype.

Reply via email to