Created
September 20, 2023 12:49
-
-
Save anderseknert/746f47bc024431d5229b068b8ca4a053 to your computer and use it in GitHub Desktop.
Else
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Expressions may be evaluated in any order | |
allow if expression1 | |
allow if expression2 | |
allow if expression3 | |
# Expressions evaluated from top to bottom | |
allow if { | |
expression1 | |
} else { | |
expression2 | |
} else { | |
expresssion3 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment