Warning

You're browsing the old v2.x documentation. This version is no longer maintained. Click here to go the v3.x documentation.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
strings [2019/05/27 20:57] – [How strings are stored in memory] neilsstrings [2019/06/27 07:45] neils
Line 84: Line 84:
   print a$   print a$
      
-In the example above, ''strbuffer!'' is an array of 256 bytes. The ''@'' (address-of) operator returns the start address of the array and assigns it to ''a$''. Now ''a$'' points to a working space where your can now store keyboard input.+In the example above, ''strbuffer!'' is an array of 256 bytes. The ''@'' (address-of) operator returns the start address of the array and assigns it to ''a$''. Now ''a$'' points to a working space where your can store keyboard input.
  
 To define a 40 characters long string and initialize it to empty (zero length), you can write the following code: To define a 40 characters long string and initialize it to empty (zero length), you can write the following code:
Line 92: Line 92:
   a$ = @strbuffer!     a$ = @strbuffer!  
   rem -- a$ now points to an empty string   rem -- a$ now points to an empty string
 +