< Pascal Programming
Syntax cheat sheet
monospaced
denotes keywords and syntax- [ ] denotes optional syntax
- | denotes multiple possible syntaxes
- ( ) denotes grouped syntax
Statements
syntax | definition | availability |
---|---|---|
if condition then begin statement(s) end;
|
Conditional statement | standard |
while condition do begin statement(s) end;
|
while loop |
standard |
repeat statement(s) until condition; |
repeat loop |
standard |
with variable do begin statement(s) end;
|
Eases the use of a variable or pointer variable of a structured type by omitting the dot notation for the variable. | standard |
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.