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 / tw22936.pp
Size: Mime:
program Project1;

var
  s: ansistring;
  i : integer;

begin
  s := 'abc';

  i:=1;

  if low(s)<>i then
    halt(1);

  if high(s)<>3 then
    halt(1);

  i:=0;

{$ZEROBASEDSTRINGS ON}
  if low(s)<>i then
    halt(1);

  if high(s)<>2 then
    halt(1);

  if s[0]<>'a' then
    halt(1);
{$ZEROBASEDSTRINGS OFF}
  writeln('ok');
end.