17 lines
173 B
ObjectPascal
17 lines
173 B
ObjectPascal
unit test_mu_unit3;
|
|
|
|
interface
|
|
|
|
uses test_mu_unit4;
|
|
|
|
procedure proc3;
|
|
|
|
implementation
|
|
|
|
uses test_mu_unit2,test_mu_unit1;
|
|
|
|
procedure proc3;
|
|
begin
|
|
writeln('proc3');
|
|
end;
|
|
end. |