The translation was automatically locked due to following alerts: Could not merge the repository.
Loading…
![]() New source string testing_project / Documentation: dev_guide/lua_style_guide — English |
Loading…
![]() New source string testing_project / Documentation: dev_guide/lua_style_guide — English |
if (a == true and b == false) or (a == false and b == true) then
<...>
end
-- Bad
if a == true and b == false or a == false and b == true then
<...>
end
-- Good but not explicit
if a ^ b == true then
end