1<===> input.scss
2.strings {
3  // Strings are tokenized as units, so their contents shouldn't affect anything
4  // else.
5  --text: "foo";
6  --bang: "!";
7  --semicolon: ";";
8  --square: "][";
9  --curly: "}{";
10  --parens: ")(";
11}
12
13<===> output.css
14.strings {
15  --text: "foo";
16  --bang: "!";
17  --semicolon: ";";
18  --square: "][";
19  --curly: "}{";
20  --parens: ")(";
21}
22