Files
tp2-vsl-pds/tests/fragment1/while2.vsl
2025-03-27 14:18:48 +01:00

11 lines
137 B
Plaintext

FUNC INT main() {
INT x, y x :=
42 y:=0
WHILE x DO {
x := x - 1
y := y + 2
} DONE
RETURN y
}