{./include.i
¶m="this should not be considered a string"
}
Quick solution:
Double quoted string preceded by = should not be considered a string. The problem right now is the ending " as it is considered a start of a string. This breaks the rest of a program.
Propper solution:
It does look like scopes are the answer.
I do not think I will be able to solve this anytime soon. Looks like it will be solved by complete rewrite using scopes and other features of grammar.
Quick solution:
Double quoted string preceded by
=should not be considered a string. The problem right now is the ending"as it is considered a start of a string. This breaks the rest of a program.Propper solution:
It does look like
scopes are the answer.I do not think I will be able to solve this anytime soon. Looks like it will be solved by complete rewrite using scopes and other features of grammar.