home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
pascal
/
visionix
/
test
/
tbase.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1993-07-11
|
187 b
|
21 lines
program tbase;
uses
vgen;
begin
WriteLn;
WriteLn( ByteToBin( 255 ) );
WriteLn( BaseToInt( 10, '1234' ) );
WriteLn( IntToBase( 36, 36*36 ) );
end.