Procedure Habilitation AfficherType(Expression:Nul Ou Caractere);
Variable
/******/
AGlobal:Entier;
/****************************************************************/
Procedure P(A : Entier, B : Reel, C : Caractere)
/* Objet : Procédure quelconque. */
/****************************************************************/
Debut
...
AGlobal=A;
...
Fin Procedure
Principal()
/*******/
Debut
...
P(2, 2.3, "coucou");
...
AfficherType("AGlobal*10");
/* Ecrit :
AGlobal*10:Entier;
*/
...
Fin Principal
AfficherVariablesLocales pour afficher les variables locales. AfficherVariablesGlobales pour afficher les variables globales.
- | - | - | - | - | - | - | - | - |