actually commit TP2

This commit is contained in:
Rémi Di Guardia
2022-09-19 11:57:16 +02:00
parent 7f66aeacb8
commit 4a02f248df
23 changed files with 548 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
a = 4 +b ;
// EXPECTED
// b is undefined
// EXITCODE 1
+3
View File
@@ -0,0 +1,3 @@
Hello
// EXPECTED
// prog = Hello
+10
View File
@@ -0,0 +1,10 @@
20 + 22;
a = 4;
a + 2;
a * 5;
// EXPECTED
// 20+22 = 42
// a now equals 4
// a+2 = 6
// a*5 = 20