Just testing Lua.

This commit is contained in:
Johannes Findeisen 2024-03-14 23:28:31 +01:00
commit b86e8a03bc

11
lua/xw3/session.lua Normal file
View file

@ -0,0 +1,11 @@
function max(num1, num2)
if (num1 > num2) then
result = num1;
else
result = num2;
end
return result;
end