fork download
  1. {$mode objfpc}
  2. {$apptype console}
  3. {$M+}
  4.  
  5. type
  6. TRoosters = (GoldenRooster, Junglefowl, FightingCock, Fjalarr, Gullinkambi, GallicRooster, You);
  7.  
  8. Var
  9. s: string;
  10.  
  11. begin
  12. WriteStr(s, FightingCock);
  13. Writeln(s)
  14. end.
Success #stdin #stdout 0s 336KB
stdin
Standard input is empty
stdout
FightingCock