Announcement: Lua.org now officially recommends this forum as a meeting place for the Lua community
The forum is currently open to new registrations. The registration will close for a short period of time when reaching 500 active members, to upgrade the server resources.
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.