home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / DATABASE / DO1BETA.ZIP / ADDRESS.DO next >
Text File  |  1991-07-08  |  152b  |  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.