Basic Pascal Tutorial/Hello, World

From Lazarus wiki
Revision as of 02:52, 3 February 2022 by Kai Burghardt (talk | contribs) (Kai Burghardt moved page Hello, World to Basic Pascal Tutorial/Hello, World: tidy up main name space: create subpage hierarchy for basic Pascal tutorial [cf. [[Special: PermaLink/149778#Cluttering of mai...)
Jump to navigationJump to search

العربية (ar) български (bg) Deutsch (de) English (en) español (es) français (fr) italiano (it) 日本語 (ja) 한국어 (ko) русский (ru) svenska (sv) 中文(中国大陆)‎ (zh_CN)

 ◄   ▲   ► 

Hello, World (author: Tao Yue, state: unchanged)

In the short history of computer programming, one enduring tradition is that the first program in a new language is a "Hello, world" to the screen. So let's do that. Copy and paste the program below into your IDE or text editor, then compile and run it.

If you have no idea how to do this, return to the Table of Contents. Earlier lessons explain what a compiler is, give links to downloadable compilers, and walk you through the installation of an open-source Pascal compiler on Windows.

program Hello;
begin
  writeln ('Hello, world.');
end.

The output on your screen should look like:

Hello, world.

If you're running the program in an IDE, you may see the program run in a flash, then return to the IDE before you can see what happened. See the bottom of the previous lesson for the reason why. One suggested solution, adding a readln to wait for you to press Enter before ending the program, would alter the "Hello, world" program to become:

program Hello;
begin
  writeln ('Hello, world.');
  readln;
end.
 ◄   ▲   ►