Bash:
nomVariable=valeur
C/C++:
nomType nomVariable;
nomType nomVariable = valeur;
C++
nomType pointeurVariable = new nomType();
PHP:
nomVariable=valeur;
nomVariable = new nomClasse;
nomVariable = new nomClasse(param1, param2, ...);
nomVariable = array();
var nomMethode = valeur;
Python
nomVariable=valeur
Javascript:
nomVariable=valeur;
var nomVariable = valeur;
nomVariable = new nomFonction();
nomVariable = {"indice":"valeur","indice":"valeur"};
ASP/VB:
dim nomVariable
dim nomVariable as nomType
Lire les commentaires | Laisser un commentaire