That code below gives an error \"Expecting more source characters\" you may please any help me on this issue.
Thanks
Cengiz Yücel A web developer form Turkey
Another common source that catches C programmers is the opening brace on functions -- (most) javascript programmers put it at the end of the line and (most) C programmers start it on a new line. Doing both is obviously an error:
MyClass.LastFunctionInFile = function() { { Foo(); Bar(); }
See it?