fork(1) download
  1. Type
  2. PInteger = ^Integer;
  3. IntegerArrayP = array of PInteger;
  4. PIntegerArrayP = ^IntegerArray;
  5.  
  6. var
  7. variable: Integer;
  8. parrp: PIntegerArrayP;
  9. arrp: IntegerArrayP;
  10. begin
  11. SetLength(arrp, 5);
  12. parrp := @arrp;
  13. For variable := Low(arrp) to High(arrp) do
  14. begin
  15. arrp[variable] := New(PInteger);
  16. parrp^[variable^] := variable;
  17. WriteLn('parrp: ', arrp[variable]^);
  18. end;
  19. end.
Compilation error #stdin compilation error #stdout 0s 340KB
stdin
Standard input is empty
compilation info
prog.pas(16,23) Error: Illegal qualifier
prog.pas(19,8) Fatal: There were 1 errors compiling module, stopping
Fatal: Compilation aborted
Error: /usr/bin/ppc386 returned an error exitcode (normal if you did not specify a source file to be compiled)
stdout
Standard output is empty