pl0/tests/multiply.pl0

13 lines
147 B
Plaintext

# This program multiplies two numbers together.
VAR x, y, z;
BEGIN
x := 10;
y := 20;
z := x * y;
# Expect: 200
! z
END.