Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / webtbs / uvmta_a.pp
Size: Mime:
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.