The SAS statistical software uses comments in two styles: the usual block comment and additionally (asterisk ... semicolon). Statements are separated by semicolons in SAS. When I define the part of the following expression after the asterisk gets highlighted as a comment, which is clearly wrong. I was unsuccessfull at using Line Comment definitions so far.
How can I fix this?
Code: Select all
/* */
Code: Select all
* ;
Code: Select all
Block Comment On Alt = * Block Comment Off Alt = ;
Code: Select all
a=b*c;
How can I fix this?