RosettaCodeData/Task/String-interpolation-included-/AutoHotkey/string-interpolation-included-.ahk
2023-07-01 13:44:08 -04:00

9 lines
162 B
AutoHotkey

; Using the = operator
LIT = little
string = Mary had a %LIT% lamb.
; Using the := operator
LIT := "little"
string := "Mary had a" LIT " lamb."
MsgBox %string%