Hello,
In the language I'm using | is the comment character (till the end of the line) but || is the OR operator.
I've been trying to handle this by using:
Line Comment Preceding Chars = [~|]
Line Comment Num = 2|
Block Comment On = |*
Block Comment Off = *|
It's a cludgy workaround since technically "| " is not a comment. Everytime I just use | for the comment character, however, it ends up commenting out the rest of the OR operator and the rest of the line.
Anyone have any suggestions on how I fix this?
The basic rule is | is a comment till the end of the line except
|| which is the OR Operator
Thanks!
In the language I'm using | is the comment character (till the end of the line) but || is the OR operator.
I've been trying to handle this by using:
Line Comment Preceding Chars = [~|]
Line Comment Num = 2|
Block Comment On = |*
Block Comment Off = *|
It's a cludgy workaround since technically "| " is not a comment. Everytime I just use | for the comment character, however, it ends up commenting out the rest of the OR operator and the rest of the line.
Anyone have any suggestions on how I fix this?
The basic rule is | is a comment till the end of the line except
|| which is the OR Operator
Thanks!