tw0802.pp 140 B

123456789
  1. program test;
  2. function testf (a:byte;b:integer;c:char):char;
  3. begin
  4. testf:=c;
  5. end;
  6. begin
  7. writeln('"',testf(0,-1,'A'),'"');
  8. end.