home *** CD-ROM | disk | FTP | other *** search
- // testrect.prg
-
- procedure main
- local x := Rectangle():new(5, 10, 15, 40)
-
- ? 'The dimensions of Rectangle x are as follows:'
- ? ' width:', x:width
- ? ' height:', x:height
- ? ' area:', x:area
- ? ' top:', x:top
- ? ' left:', x:left
- ? ' bottom:', x:bottom
- ? ' right:', x:right
- return
-
- // eof testrect.prg
-