RosettaCodeData/Task/Here-document/AutoHotkey/here-document.ahk
2023-07-01 13:44:08 -04: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