PHP <-> Free Pascal | Conditional statement

PHP

if, if else

Description

if (condition) statement1
if (condition) statement1 else statement2
Used keywords: if else

Input

Examples

PHP

Conditional statement the possible of use:
if ($i > 10)
{
$i =10;            $i = $i - 1;   $i++;
}
if ($i < 10) $i = 10; else $i=1;
.
Free Pascal

if then, if then else

Description

if condition then statement1;
if condition then statement1 else statement2;
Used keywords: if else then

Input

Examples

Free Pascal

Conditional statement the possible of use:
if i > 10 then
begin
i :=10;            i := i - 1;   inc(i);
end;
if i < 10 then i := 10 else i:=1;
Languages: en hu cz sk