home *** CD-ROM | disk | FTP | other *** search
- (* ------------------------------------------------------ *)
- (* SGRFDEMO.PAS *)
- (* Nur für Amstrad PC 1512 CGA-Monitor *)
- (* ------------------------------------------------------ *)
- PROGRAM SGraphDemo;
-
- USES Crt, Graph, Sgraph; { Sgraph nach Graph ! }
-
- VAR ch : CHAR;
-
- BEGIN
- HiRes;
- Randomize;
- ch := #0;
- REPEAT
- SetColor(Random(14) + 1);
- Bar(Random(639), Random(199), Random(639), Random(199));
- IF KeyPressed THEN ch := ReadKey;
- UNTIL ch = #27;
- CloseGraph;
- END.
- (* ------------------------------------------------------ *)
- (* Ende von SGRFDEMO.PAS *)