NeverScript icon indicating copy to clipboard operation
NeverScript copied to clipboard

{} on if's have to be on the same line

Open LWSS opened this issue 2 years ago • 0 comments

this seems like a weird quirk, I prefer to use the nextline {}

// works
 if (<variable> < 5) {
        print text="Variable is below 5"
    }
// busted
 if (<variable> < 5) 
{
        print text="Variable is below 5"
}

also don't see this mentioned anywhere

LWSS avatar Apr 25 '23 01:04 LWSS