Files
tp2-vsl-pds/tests/aLaMain.vsl
Vu Tuan Minh 2948c372dd ifthenelse
2025-04-11 14:31:27 +02:00

16 lines
315 B
Plaintext

FUNC INT main() {
INT a,b,c
b:=3
c:=1
PRINT "coucou, tu peux réparer le visitPrint dans LLVM stp","il manque virgule au milieu", c*5+b
WHILE b - 1
DO{
b := b - 1
c := c + 1
}
DONE
IF c -1
THEN READ a ELSE READ b
FI
b:=c+1
RETURN 4 + 6 * 5 + 2 }