home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
1988
/
08_09
/
sorttest.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-05-18
|
218 b
|
21 lines
(*$R+,U+*)
program test;
const max = 10000;
type elemtyp = INTEGER;
var elem : array[1..MAX] OF elemtyp;
anzelem : integer;
(*$I SORT.PAS *)
begin
anzelem := Max;
quicksort;
end.