mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 18:49:46 +02:00
23 lines
221 B
ObjectPascal
23 lines
221 B
ObjectPascal
unit uvmta;
|
|
|
|
interface
|
|
|
|
var
|
|
a_int : longint;
|
|
|
|
const
|
|
a_test_count : longint = 0;
|
|
|
|
procedure a_test;
|
|
|
|
implementation
|
|
|
|
procedure a_test;
|
|
begin
|
|
Writeln('Procedure a_test in uvmt unit');
|
|
inc(a_test_count);
|
|
end;
|
|
|
|
|
|
end.
|