How to set padding for base64 encoding
ag0aep6g via Digitalmars-d-learn
digitalmars-d-learn at puremagic.com
Thu Apr 7 05:52:01 PDT 2016
On 07.04.2016 13:59, rikki cattermole wrote:
> "abc" strings are not multiline.
> Use """abc""" for that purpose.
Wat. We're talking about, aren't we? In D, "abc" strings are multiline,
and """abc""" is not a thing. `"""abc"""` is the same as `"" "abc" ""`
is the same as `"" ~ "abc" ~ ""` is the same as `"abc"`.
More information about the Digitalmars-d-learn
mailing list