NeverScript
NeverScript copied to clipboard
{} on if's have to be on the same line
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