Borland Pascal Wiki
Borland Pascal Wiki
 This script page was blocked. The script was reviewed and it works perfectly so this page doesn't need anymore editing.

The Hello World script is the simplest script that a programmer can make. This is the Hello World script in the Pascal language:

begin
 write ('Hello World!');
 readln;
end.

Explanation

Prints on the screen "Hello World!", waits for the user to press ENTER and then closes the application.

See also

Screenshot

Hello world