Line Continuation

You can make script more readable by breaking up long lines with the line continuation character, “\”. For example, the following code shows an unbroken line of code first, followed by the same line of code broken up with the line continuation character:

print("Device: " & $content.device)

print("Device: " & \

         $content.device)

Flow Control