Is there any way to make the Lua end syntax more similar to Ada's end syntax? e.g.: end if, end loop, end Function_Name
I'm currently using comments to emulate the Ada syntax, e.g.:
function Get_Max (A, B)
if (A > B) then
return A;
else
return B;
end -- if
end -- Get_Max...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.