ferrite-lua/examples/test.lua
2026-03-14 16:06:08 +02:00

7 lines
87 B
Lua

function max (a, b)
local m = a
if a then
m = b
end
return m
end