Web Design, Development & Marketing

Web Development Articles

Pascal: Hello World Beginner's Program Code

This is a good starting point for Pascal programming and programming in general. This Pascal program simply prints a message onto the terminal output based on the user's input.

program HelloWorld;

var
   name:string;

begin
writeln('Please enter your name');
readln(name);
writeln('Hello there ', name);
readln;
end.

Free Pascal is a free pascal compiler you can use to edit and compile pascal programs.

Subscribe to RSS Feed Bookmark and Share

Related Links

Related Articles / Posts

Pascal: Hello World Beginner's Program Code (03/05/2006)

Pascal: Average Value Calculator (03/05/2006)