Skip to content

Instantly share code, notes, and snippets.

@JoeGlines
Created June 3, 2021 12:54
Show Gist options
  • Save JoeGlines/cdbfb9143ce5d0a35c0eca341ee01979 to your computer and use it in GitHub Desktop.
Save JoeGlines/cdbfb9143ce5d0a35c0eca341ee01979 to your computer and use it in GitHub Desktop.
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