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.2.0 / tests / webtbs / tw4533.pp
Size: Mime:
{$mode objfpc}
{$openstrings+}
procedure t(out s: shortstring);
begin
  writeln(high(s));
  if high(s) <> 4 then
    halt(1);
end;

var
  s: string[4];
begin
  t(s);
end.