text
/textln
functions βOutput your information in Text
format. This internally uses document.body.innerText
. Using these functions will escape HTML characters.
program san_textln(input,output);
var user_name: string;
begin
readln(user_name);
textln('Hi ', user_name);
end;