pl0/examples/multiply.pl0

12 lines
133 B
Plaintext

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