Unit prog;
Interface
Type
Tinfo=char;
Pelem= ^ Telem;
Telem = record
Info:Tinfo;
Next: Pelem;
End;
List=record
An: Pelem;
Implementation
End.