RosettaCodeData/Task/Literals-String/AutoHotkey/literals-string.ahk

14 lines
256 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
"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
)