Programming in Free Pascal language

The most important commands from Free Pascal programming language in one place, a unique comparison and each command-operator is shown using a piece of program. Statements-operators of these sample programs are clickable, so with a simple click we have more information available.

Programming language Free Pascal:


Lexical elements

Lexical elements are numeric, string constants and comments in the code.

Types and variables

Types and variables are closely related because variables are the most important elements of our program in which we store data, partial results of our calculations. Types tell us what data can be stored in variables.

Program structure


Operators

Operators perform an operation between the operands, this operation can be mathematical, logical, or bitwise.
Parenthesis operator: ( )

Statements

Statements are important elements for writing programs. Generally one statement line corresponds to one line program. The main group of the statements are: cycles, program branching and flow control.

Free Pascal

 i := x * 5;
 while i>0 do
   if i=10 then
     break
   else 
   begin
     dec(i)
   end;

Examples - Free Pascal

Free Pascal

a1 := false and false; // a1 = false
a2 := false and true; // a2 = false
a3 := true and false; // a3 = false
a4 := true and true;  // a4 = true

Free Pascal

x >= y / 5
2 >= f($AF)
(j + 8) >= 3

Free Pascal

Other pieces of example codes:
if  y < 100 then  
   inc(x);
2 shl 2
b3:= Boolean( 0);
y + 3
15 +7.5
x = 6
Languages: en hu cz sk