Adding range

This commit is contained in:
Anthony Debucquoy
2025-03-20 21:37:08 +01:00
parent ca495dfd9e
commit a22bc69491
3 changed files with 14 additions and 1 deletions

9
examples/lists.spf Normal file
View File

@ -0,0 +1,9 @@
liste premier = [1, 2, 3];
ajouter 4 dans premier;
liste deuxieme = [1:4];
liste troisième = [deuxieme[0]: 10];
liste quatrième = [1: troisième[6]];