A syntax error occurs on a single expression when parenthesis is used:
if (5 > 3) [print "Yes]
Syntax error on ">". But with:
if 5 > 3 [print "Yes]
It works.
Log in to post a comment.