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