继续下一行的命令

Mec*_*ash 7 autoit

有没有办法在新线路上继续命令?我的MsgBox()函数调用很长,为了便于阅读,我想做这样的事情:

$confirm = MsgBox(321, "Check Information", "Confirmation Number:     " & @LF &
                                            "Amount:                  $")
Run Code Online (Sandbox Code Playgroud)

这将返回语法错误,并指向第一行的末尾作为错误的位置.

Dan*_*ley 12

在行尾添加下划线:

$confirm = msgbox(321, "Check Information", "Confirmation Number:     " & @LF & _
                                            "Amount:                  $")
Run Code Online (Sandbox Code Playgroud)