mise à jour des tests

This commit is contained in:
Dimitri Lajou
2025-03-27 14:18:02 +01:00
parent 89abf8f85a
commit eef8242f11
142 changed files with 165 additions and 36 deletions

View File

@@ -0,0 +1,11 @@
FUNC VOID main() {
PRINT 5,"+",7," = ", 5+7 ,"\n"
PRINT 5,"-",7," = ", 5-7 ,"\n"
PRINT 5,"*",7," = ", 5*7 ,"\n"
PRINT 5,"/",7," = ", 5/7 ,"\n"
PRINT 5,"+",1," = ", 5+1 ,"\n"
PRINT 5,"* (",5,"+",7,") = ", 5*(5+7) ,"\n"
PRINT 5,"* ",5,"+",7," = ", 5 * 5 + 7 ,"\n"
PRINT "-2 = ", -2
}