5 lines
86 B
Text
5 lines
86 B
Text
function multiplyy n1 n2
|
|
return n1 * n2
|
|
end multiplyy
|
|
|
|
put multiplyy(2,5) -- = 10
|