RosettaCodeData/Task/Here-document/AutoHotkey/here-document.ahk
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

9 lines
253 B
AutoHotkey

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