myformdep2.pp 159 B

1234567891011121314151617
  1. unit myformdep2;
  2. interface
  3. Procedure DoLoaded2;
  4. implementation
  5. Procedure DoLoaded2;
  6. begin
  7. Writeln('loaded 2');
  8. end;
  9. initialization
  10. DoLoaded2;
  11. end.