home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / visionix / test / tkey.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-11-20  |  156 b   |  21 lines

  1. program tkey;
  2.  
  3. uses
  4.  
  5.   vcrtu;
  6.  
  7. var
  8.  
  9.   ch : char;
  10.  
  11. begin
  12.  
  13.   repeat
  14.  
  15.     ch := readkey;
  16.  
  17.     writeln( ord( ch ) ) ;
  18.  
  19.   until ch=#27;
  20.  
  21. end.