feat: Implement eval methods for expressions

This commit is contained in:
Lucàs
2024-10-26 22:40:50 +02:00
parent b493c77d70
commit 9e201e8d16
28 changed files with 638 additions and 325 deletions
+5
View File
@@ -0,0 +1,5 @@
var a : entier = 5; // 5
var b : flottant = a + 3.8; // 8.8
var c : flottant = b * a; // 44.0
var d : chaine = "Hello" + "World"; // "HelloWorld"