Basic Pascal Tutorial/Chapter 2/Output

From Lazarus wiki
(Redirected from Output)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

български (bg) Deutsch (de) English (en) français (fr) 日本語 (ja) русский (ru) 中文(中国大陆)‎ (zh_CN)

 ◄   ▲   ► 

2B - Output (author: Tao Yue, state: unchanged)

For writing data to the screen, there are also two statements, one of which you've seen already in last chapter's programming assignment:

write (Argument_List);
writeln (Argument_List);

The writeln statement skips to the next line when done.

You can use strings in the argument list, either constants or literal values. If you want to display an apostrophe within a string, use two consecutive apostrophes. Displaying two consecutive apostrophes would then requires you to use four. This use of a special sequence to refer to a special character is called escaping, and allows you to refer to any character even if there is no key for it on the keyboard.

 ◄   ▲   ►