12 lines
No EOL
133 B
Text
12 lines
No EOL
133 B
Text
# This program multiplies two numbers together.
|
|
|
|
VAR x, y, z;
|
|
|
|
BEGIN
|
|
x := 10;
|
|
y := 20;
|
|
|
|
z := x * y;
|
|
|
|
! z
|
|
END. |