home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
misc_programming
/
TEST
/
DBTASK.ADA
< 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
Text File
|
1990-06-28
|
268 b
|
21 lines
procedure dbtask is
task type t is
entry e(n: integer);
end;
for t'storage_size use 4096;
z: integer := 999;
x, y: t;
task body t is
begin
accept e(n: integer) do
null;
end;
end;
begin
x.e(37);
y.e(73);
end;