compilation/examples/simple.spf
2025-03-20 00:52:05 +01:00

16 lines
213 B
Plaintext

texte nom = "anthony";
entier age = 23;
booléen majeur = vrai;
booléen ingénieur;
majeur = faux;
afficher nom, age, majeur;
#TODO: Ces lignes devraient donner une erreur
# majeur = 42;
# afficher majeur;