Introduction à PARI/GP Éléments de syntaxe ? A = 5 + 3; \\ affectation ? A %15 = 8 ? A == 2*4 \\ égalité, 1 vrai, 0 faux %16 = 1 ? A != 2^3 \\ différent, 1 vrai, 0 faux %17 = 0 ? if (A==9-1,print("OUI"),print("NON")); % OUI