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 / tw16130.pp
Size: Mime:
var
  S :String;
begin
  S := 'H';
  case S of
    'HH','H': WriteLn('1');
  end;
  S := 'HH';
  case S of
    'HH': WriteLn('2');
  end;
  case S of
    'HH','H': WriteLn('3');
  end;
  case S of
    'H','HH': WriteLn('4');
  end;
  S := 'A';
  case S of
    'HH': WriteLn('2');
  end;
  case S of
    'HH','H': WriteLn('3');
  end;
  case S of
    'H','HH': WriteLn('4');
  end;
end.