5 lines
63 B
Text
5 lines
63 B
Text
function multiply(a,b)
|
|
return a*b
|
|
end
|
|
|
|
print(multiply(3,4))
|