mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:28:55 +02:00
23 lines
213 B
ObjectPascal
23 lines
213 B
ObjectPascal
unit uvmta_a;
|
|
|
|
interface
|
|
|
|
var
|
|
int : longint;
|
|
|
|
const
|
|
test_count : longint = 0;
|
|
|
|
|
|
procedure test;
|
|
|
|
implementation
|
|
|
|
procedure test;
|
|
begin
|
|
Writeln('Procedure test in uvmt_a unit');
|
|
inc(test_count);
|
|
end;
|
|
|
|
end.
|