11 lines
114 B
ObjectPascal
11 lines
114 B
ObjectPascal
|
|
unit TestUnit1;
|
||
|
|
|
||
|
|
uses 'TestUnit 2';
|
||
|
|
|
||
|
|
function main: string;
|
||
|
|
begin
|
||
|
|
Result := TestUnit2Func;
|
||
|
|
end;
|
||
|
|
|
||
|
|
end.
|