compilation/examples/arithmetic.spf
2025-03-23 00:08:42 +01:00

32 lines
379 B
Plaintext

# entier x = 3;
# entier y = 4;
#
liste l = [3, 4, 5];
ajouter 3 dans l;
afficher l;
entier x = 3;
entier y = 4;
entier z = x + 3 * y + 6 / 3;
#
# afficher x vaut y;
# afficher x ne vaut pas y;
# entier z;
# afficher taille "test";
# afficher x + 3, 3 + y;
# x = -x;
# afficher x;
# entier x = 2 + 3 * 4;
# entier y = 3 * 4 + 2;
# liste l = [1, 2, 3];
afficher l[2];