mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-11-10 00:10:23 +01:00
20 lines
171 B
ObjectPascal
20 lines
171 B
ObjectPascal
unit MyFormDep;
|
|
|
|
interface
|
|
|
|
uses myformdep2;
|
|
|
|
Procedure DoLoaded;
|
|
|
|
implementation
|
|
|
|
Procedure DoLoaded;
|
|
|
|
begin
|
|
Writeln('loaded');
|
|
end;
|
|
|
|
initialization
|
|
DoLoaded;
|
|
end.
|