This program demonstrates the text output function of the Pascal programming language by displaying the message "Hello World!".
program HelloWorld;
begin
writeln('Hello World');
end.
"Hello World"
This program was tested and executed using the Turbo Pascal 7.0 complier from Borland..