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