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 / tw25685.pp
Size: Mime:
{ %OPT=-O2 }
program Project1;

procedure Foo(StartPos, EndPos: Cardinal);
var
  s:string;
begin
  if (Cardinal((@s[1])^) >= StartPos) and (Cardinal((@s[1])^) <= EndPos) then
    writeln;
end;

var
  S: string;

begin
  foo(1,2);
  writeln(PByte(@S[1])^ = PByte(@S[1])^ );
end.