fork download
  1. program ideone;
  2.  
  3. var
  4. t : String;
  5. count : Integer;
  6. begin
  7. for count := 1 to 255 do begin
  8. t[count] := char('a');
  9. end;
  10.  
  11. writeln(t[255]);
  12.  
  13. end.
Success #stdin #stdout 0s 276KB
stdin
Standard input is empty
stdout
a