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

  1. program tbase;
  2.  
  3. uses
  4.  
  5.   vgen;
  6.  
  7.  
  8. begin
  9.  
  10.  
  11.   WriteLn;
  12.  
  13.   WriteLn( ByteToBin( 255 ) );
  14.  
  15.   WriteLn( BaseToInt( 10, '1234' ) );
  16.  
  17.   WriteLn( IntToBase( 36, 36*36 ) );
  18.  
  19.  
  20.  
  21. end.