Thats one method how i tried to test words for ReadLn:
program New;
var
n : string;
begin
n := ReadLn('Write something');
WriteLn(n);
end.
but that dont write into debug box that what i writed? And the n value is just '' .
How i can use ReadlLn for words?