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