A frequent question is how to use white-space as a separator, doing this: ``` separator A " "; ``` doesn't work and the answer is to use an empty string: ``` separator A ""; ``` Maybe bnfc could accept `" "` as a separator and treat it like `""`.
A frequent question is how to use white-space as a separator, doing this:
doesn't work and the answer is to use an empty string:
Maybe bnfc could accept
" "as a separator and treat it like"".