18 lines
228 B
Plaintext
18 lines
228 B
Plaintext
# entier x = 3;
|
|
# entier y = 4;
|
|
#
|
|
liste l = [3, 4, 5];
|
|
|
|
ajouter 3 dans l;
|
|
|
|
afficher l;
|
|
|
|
#
|
|
# afficher x vaut y;
|
|
# afficher x ne vaut pas y;
|
|
# entier z;
|
|
# afficher taille "test";
|
|
# afficher x + 3, 3 + y;
|
|
# x = -x;
|
|
# afficher x;
|