5 lines
72 B
Rexx
5 lines
72 B
Rexx
say multiply(5, 6)
|
|
|
|
::routine multiply
|
|
use arg x, y
|
|
return x *y
|