2
0

twrstr7.pp 233 B

123456789101112131415
  1. { from GPC test suite }
  2. {$mode objfpc}
  3. Program WriteByte;
  4. var
  5. a: array [ 0..3 ] of Byte = ( ord ( 'O' ), ord ( 'K' ), 42, 137 );
  6. var
  7. S: String [ 255 ];
  8. begin
  9. WriteStr ( S, a [ 0 ], a [ 1 ] );
  10. halt(ord(S <> '7975'));
  11. end.