1<===> input.scss
2$foo: bar;
3
4div {
5    content: "foo #{$foo}"
6}
7<===> output.css
8div {
9  content: "foo bar";
10}
11