Skip to content
On this page

The text/textln functions ​

Output your information in Text format. This internally uses document.body.innerText. Using these functions will escape HTML characters.

Example ​

pascal
program san_textln(input,output);
   var user_name: string;
begin
  readln(user_name);
  textln('Hi ', user_name); 
end;