'how to split long code lines in SIL script language

I'm wondering how I'd splite the code lines in SIL? Couldn't find anything regarding this in doc

string [] keys = selectIssues("project = jgate AND issuetype in (SMSGateTemplate 
    , SMSGateTemplateCreate, SMSGateTemplateDelete, SMSGateTemplateUpdate)");

in this example i need to split string



Solution 1:[1]

just figureg out that i can split

string someString = "word and another word"; 

by splitting text in paranthesis to several string with + operator like this:

string someString = "word and " 
                   + "another word";

thats solves my problem with long string readability

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1