|
|
|
|
|
by Nevermark
847 days ago
|
|
Common example of complications of two grammars being combined: C code and character strings. Double quotes in C code mean begin and end of a string. But strings contain quotes too. And newlines. Etc. So we got the cumbersome invention of escape codes, and so characters strings in source (itself a character string) are not literally the strings they represent. |
|
ugly, yes. problematic? no.