Skip to content
On this page

The html/htmln functions ​

Output your information in HTML format. This internally uses document.body.innerHTML.

Example ​

pascal
program san_htmln(input,output);
   var user_name: string;
begin
  htmln('<button> Greet Me </button>'); 
  readln(user_name);
  html('<h1> Hi ', user_name, '</h1>'); 
end;