Probably, this is an English problem, how many #
s are allowed in raw string literals? The Rust's document says
They start with the character
U+0072
(r
), followed by fewer than 256 of the characterU+0023
(#
) and aU+0022
(double-quote) character.
Which does this mean n < 256 or n ≤ 256 where n = number of #
in a single raw literal bracket (e.g. #####"
, "##
, #"
)?