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

13 lines
256 B
AutoHotkey

"c" ; character
"text" ; string
hereString = ; with interpolation of %variables%
(
"<>"
the time is %A_Now%
\!
)
hereString2 = ; with same line comments allowed, without interpolation of variables
(Comments %
literal %A_Now% ; no interpolation here
)