|
|
DataMuseum.dkPresents historical artifacts from the history of: CP/M |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about CP/M Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 694 (0x2b6)
Types: TextFile
Names: »CIRCULAR.PAS«
└─⟦505fbc898⟧ Bits:30002732 Turbo Pascal 5.0 for C-DOS Partner
└─⟦this⟧ »DEMOS\CIRCULAR.PAS«
æ Copyright (c) 1985, 88 by Borland International, Inc. å
program Circular;
æ Simple program that demonstrates newly-permitted circular
unit references via a USES clause in the implementation
section.
Note that it is NOT possible for the two units to
"USE" each other in their interface sections. It is possible
for AA's interface to use BB, and BB's implementation to use
AA, but this is tricky and depends on compilation order. We
won't document or recommend it.
å
uses
Crt, Display, Error;
begin
ClrScr;
WriteXY(1, 1, 'Upper left');
WriteXY(100, 100, 'Off the screen');
WriteXY(81 - Length('Back to reality'), 15, 'Back to reality');
end.
«eof»