Files
phptimerboard2/vendor/scrivo/highlight.php/test/markup/rust/strings.txt
2019-09-29 19:47:00 -05:00

15 lines
114 B
Plaintext
Vendored

'a';
'\n';
'\x1A';
'\u12AS';
'\U1234ASDF';
b'a';
"hello";
b"hello";
r"hello";
r###"world"###;
r##" "###
"# "##;