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