home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program ExamplePoint;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel;
-
- begin
- InitGraphic; { Initialize the graphics system }
- DrawBorder; { Draw a border around the default window }
- DrawPoint(100, 100); { Plot a pixel at (100, 100) }
- repeat until KeyPressed; { Wait until a key is pressed }
- LeaveGraphic; { Leave the graphics system }
- end. { ExamplePoint }