7 lines
87 B
Lua
7 lines
87 B
Lua
function max (a, b)
|
|
local m = a
|
|
if a then
|
|
m = b
|
|
end
|
|
return m
|
|
end |