home *** CD-ROM | disk | FTP | other *** search
- program in_test;
-
- {****************************************************************************
-
- Program to test Rinput.pas and Input.pas include files...
-
- ****************************************************************************}
-
- { now include needed subroutines... }
-
- {$i rinput.pas}
- {$i input.pas}
-
- Begin
-
- Writeln( Input( 'Enter Integer in range of 1 to 10 ', 1, 10, 0 ) );
- Writeln( Rinput( 'Enter Real in range of 1 to 10 ', 1, 10, 0 ):1:4 );
-
- End.
-
-