mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00
19 lines
126 B
ObjectPascal
19 lines
126 B
ObjectPascal
Unit XYZ;
|
|
|
|
Interface
|
|
|
|
Procedure MyProc(V: Integer);
|
|
|
|
|
|
Implementation
|
|
|
|
Procedure MyProc(Y: Integer);
|
|
Begin
|
|
end;
|
|
|
|
|
|
end.
|
|
|
|
|
|
|