elnewfie / lslforge

Automatically exported from code.google.com/p/lslforge
24 stars 13 forks source link

LSLforge does not recognize multiline strings #49

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
The script below is valid LSL.  However, LSLforge throws an error because it 
does recognize multi-line strings.  This appears to be an oversight, as it 
allows vectors, rotations, lists, and function arguments to span multiple 
lines.  For right now, I'm writing out the multiline string as a list of 
strings within a call to llDumpList2String() with "\n" as the separator.

default {
    state_entry() {
        llSay(0, "testing...
        1...
        2...
        3...
        Whiskey Tango Foxtrot");
    }
}

Original issue reported on code.google.com by ZauberEx...@gmail.com on 2 Jul 2014 at 6:51