RosettaCodeData/Task/Literals-String/AutoHotkey/literals-string.ahk
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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
)