Syntaxe : alg : Bloc
Début
| instruction1
| instruction2
| ...
Fin
Syntaxe : C/C++ : Bloc
{
instruction1;
instruction2;
...
}
Syntaxe : Java : Bloc
{
instruction1;
instruction2;
...
}
Syntaxe : Python : Bloc
Bloc: #<- deux points
instruction1 #indentation
instruction2 #même indentation
...