V1.75: Importation, conversion, et +.
Dans cette nouvelle mise à jour, vous pourrez importer des fichier en ".fpl", convertir des variable de type "texte" en type "entier", et bien plus encore !
fichier.fpl :
envoyer "yo";
main.fpl :
importer "fichier.fpl";
envoyer "Salut";
Cela va exécuter tout ce qu'il y a dans le fichier que vous importez !
variable texte a -> "5";
convertir a entier;
variable texte b -> "5.25";
convertir b decimal;
De plus, un nouveau type à fait son apparaition : bool ou booleen.
definir fonc() {
variable bool b -> faux;
renvoyer b;
}
variable bool fonction a -> fonc;
envoyer a;