home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sharew / dobject / address.do next >
Encoding:
Text File  |  1991-07-08  |  152 b   |  8 lines

  1. /*
  2.     a small demonstration of dObject's Address class
  3. */
  4. a = 1;
  5. ? "variable a = ",a;
  6. ? "address of a = ",&a;
  7. ? "contents of address of a = ",*&a;
  8.