The compiler objects to the continuation character in the example below, says it's not a valid character there. The truth is that the comment is not allowed there (should it be allowed there?), and the error message is wrong.
param enum F
caption = "F"
enum = "a" \ ; comment
"b"
endparam
It's fine without the comment.
param enum F
caption = "F"
enum = "a" \
"b"
endparam
The compiler objects to the continuation character in the example below, says it's not a valid character there. The truth is that the comment is not allowed there (should it be allowed there?), and the error message is wrong.
````
param enum F
caption = "F"
enum = "a" \ ; comment
"b"
endparam
````
It's fine without the comment.
````
param enum F
caption = "F"
enum = "a" \
"b"
endparam
````