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 / tw25255b.pp
Size: Mime:
var
  qb : qwordbool;
  lb : longbool;
  wb : wordbool;
procedure p;
begin
  if not(qb) then
    halt(1);
  if not(lb) then
    halt(1);
  if not(wb) then
    halt(1);
end;

begin
  qb:=qwordbool($8000000000000000);
  lb:=longbool($80000000);
  wb:=wordbool($8000);
  p;
  writeln('ok');
end.