We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Expressions in Liquid.NET can be grouped by parentheses, which is not currently possible in liquid.
{% if (false and true) or true %}Result #1 is true{% endif %} {% if false and (true or true) %}Result #2 is true{% endif %}
==> Result #1: true