mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-03 03:08:10 +01:00
23 lines
213 B
ObjectPascal
Executable File
23 lines
213 B
ObjectPascal
Executable File
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.
|