mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 19:27:45 +02:00
18 lines
159 B
ObjectPascal
18 lines
159 B
ObjectPascal
unit myformdep2;
|
|
|
|
interface
|
|
|
|
Procedure DoLoaded2;
|
|
|
|
implementation
|
|
|
|
Procedure DoLoaded2;
|
|
|
|
begin
|
|
Writeln('loaded 2');
|
|
end;
|
|
|
|
initialization
|
|
DoLoaded2;
|
|
end.
|