presentations/highlight-js/test/markup/rust/strings.txt

15 lines
114 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
'a';
'\n';
'\x1A';
'\u12AS';
'\U1234ASDF';
b'a';
"hello";
b"hello";
r"hello";
r###"world"###;
r##" "###
"# "##;