RosettaCodeData/Task/Here-document/AutoHotkey/here-document.ahk

10 lines
253 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
MyVar = "This is the text inside MyVar"
MyVariable =
(
Note that whitespace is preserved
As well as newlines.
The LTrim option can be present to remove left whitespace.
Variable references such as %MyVar% are expanded.
)
MsgBox % MyVariable