Skip to content

Instantly share code, notes, and snippets.

@rediffusion
Last active September 24, 2019 17:48
Show Gist options
  • Save rediffusion/2879a4271bd0626143b899ee4059f12d to your computer and use it in GitHub Desktop.
Save rediffusion/2879a4271bd0626143b899ee4059f12d to your computer and use it in GitHub Desktop.
;~ Пример #1
strHello := "Hello,"
myName := "Alexander"
MsgBox % strHello " " myName
;~ Пример #2
strHello := "Hello,"
myName := "Alexander"
newText := strHello " " myName
MsgBox % newText
;~ Пример #2
strHello := "Hello,"
myName := "Alexander"
strHello .= myName
MsgBox % strHello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment