pl0/tests/assign.pl0

7 lines
56 B
Plaintext

VAR x;
BEGIN
x := (7 + 123) / 5;
# Expect: 26
! x;
END.