5 lines
75 B
Text
5 lines
75 B
Text
multiply = function(x,y)
|
|
return x*y
|
|
end function
|
|
|
|
print multiply(6, 7)
|