mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-21 13:59:21 +02: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.
|