6 lines
82 B
Rexx
6 lines
82 B
Rexx
SAY multiply(5, 6)
|
|
EXIT
|
|
multiply:
|
|
PROCEDURE
|
|
PARSE ARG x, y
|
|
RETURN x*y
|