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 / tw17710.pp
Size: Mime:
{$mode macpas}
program unary;
var
  i : longint;
begin
  if -2 shr 1<>-1 then
    halt(1);
  if -2-2<>-4 then
    halt(1);
  i:=2;
  if -i shr 1<>-1 then
    halt(1);
  if -i-i<>-4 then
    halt(1);
  writeln('ok');
end.