pascalscript/Samples/Import/t5.rops

10 lines
120 B
Plaintext
Raw Normal View History

Program test;
var
s: string;
begin
Writeln('Your name?');
s := readln(s);
s := s + 'TESTED';
writeln(s);
end.