Procedure Habilitation AfficherVariablesLocales();
Variable
/******/
AGlobal:Entier;
BGlobal:Reel;
CGlobal:Caractere;
/****************************************************************/
Procedure P()
/* Objet : Procédure quelconque. */
/****************************************************************/
Variable
/******/
ALocal:Entier;
BLocal:Reel;
CLocal:Caractere;
Debut
ALocal=10;
BLocal=11.22;
CLocal="coucou";
...
SelectionnerTache("Principal");
AfficherVariablesLocales();
/* Ecrit :
ALocal=10;
BLocal=11.22;
CLocal="coucou";
*/
...
AfficherVariablesGlobales();
/* Ecrit :
essai:
======
AGlobal=-10;
BGlobal=-11.22;
CGlobal="COUCOU";
*/
...
Fin Procedure
Principal()
/*******/
Debut
...
AGlobal=10;
BGlobal=11.22;
CGlobal="COUCOU";
P();
...
Fin Principal
SelectionnerTache pour sélectionner une tâche.
- | - | - | - | - | - | - | - | - |