fork(4) download
  1. {$APPTYPE CONSOLE}
  2. Procedure G(p: pointer);
  3. Const
  4. Messages: array[false..true] of string = ('Не гниль', 'Гниль');
  5. Begin
  6. Writeln(Messages[p=nil])
  7. End;
  8.  
  9. Begin
  10. G(nil)
  11. End.
Success #stdin #stdout 0s 336KB
stdin
Standard input is empty
stdout
Гниль