tw15364.pp 271 B

12345678910111213141516
  1. program test;
  2. uses sysutils;
  3. var
  4. a : array [Boolean,Boolean] of string;
  5. b : wordbool;
  6. begin
  7. a[False,True] := 'True';
  8. a[False,False] := 'False';
  9. a[True,True] := 'True';
  10. a[True,False] := 'False';
  11. b := True;
  12. if a[false,b]<>'True' then
  13. halt(1);
  14. end.