home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / xbase / compiler / doobject / 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.