The Pascal Programming Language

Hello world! Example Program



Click below to go directly to a specific section:
Description | Source Code | Sample Run | Program Notes

Description

This program demonstrates the text output function of the Pascal programming language by displaying the message "Hello World!".


Source Code

program HelloWorld;

begin
  writeln('Hello World');
end.
   

Sample Run

"Hello World"


Program Notes

This program was tested and executed using the Turbo Pascal 7.0 complier from Borland..


[Back] [Home]

Last modified: 05:58 PM on 11/23/1996