Created
June 3, 2021 12:54
-
-
Save JoeGlines/cdbfb9143ce5d0a35c0eca341ee01979 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Browser_Forward::Reload | |
Browser_Back:: | |
var:="2" | |
;~ Ternary operator | |
;~ (condition)?(True) : (False) | |
data:= (var="3")?("is one"):("Not One") | |
MsgBox % data | |
data:= (Var="1")?("one") | |
:(Var="2")?("two") | |
:(Var="3")?("three") | |
:("Else") | |
MsgBox % data | |
data := (Var="1")?("one"):(Var="2")?("two"):(Var="3")?("three"):("Else") | |
MsgBox % data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment