home *** CD-ROM | disk | FTP | other *** search
- (* ------------------------------------------------------ *)
- (* FLOP.PAS *)
- (* ------------------------------------------------------ *)
- PROGRAM Flop;
-
- {$R-,S-,I-,F-,O-,A+,V-,B-,N-,E-,D-,L-}
-
- USES Crt, Environ;
-
- VAR
- b : BOOLEAN;
-
- BEGIN
- GotoXY(1, 1);
- TextColor(Yellow);
- Write('Ich bin Flop');
- b := SetMasterEnv('flipflop', 'flip.exe');
- Delay(1000);
- END.
- (* ------------------------------------------------------ *)
- (* Ende von FLOP.PAS *)
-
-