mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-01 03:41:01 +01: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.
|
|
|
|
|
|
|