On 13/08/2024 6:30 AM, monkyyy wrote:
> A directional quoted string should have the simplest parsing rule of it
> counts up on U+275D and down at U+275E and returns when its 0; all other
> escapes and characters are ignored.
So basically backtick?
```d
import std.stdio;
void main() {
writeln(`\"`); // \"
}
```