Allora son messo così

codice:
TYPE worder : RECORD parolaimpiccato:string;
VAR fp:file of worder;     { variabile di tipo file }
...
begin
   assign(fp,'words.dat');  { apro il file }
   reset(fp);               { apro in lettura }

   close(fp);               { chiusura flusso }
end;
...
cosa devo aggiungere per leggere dal file?