- l'affectation :
- variable = expression
|
- la définition de fonction :
- function variable
= nom( paramètres )
instruction(s)
endfunction
|
- la conditionnelle simple :
- if condition
then
instruction(s)
else
instruction(s)
end
|
ou
if condition
then
instruction(s)
end
|
- la conditionnelle comparative :
- select expression
case expression
then
instruction(s)
...
else
instruction(s)
end
|
ou
select expression
case expression
then
instruction(s)
...
end
|
- l'itération générique :
- while condition
do
instruction(s)
end
|
- l'itération bornée :
- for variable
= tableau
do
instruction(s)
end
|