home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / 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.