1<===> input.scss
2// Input
3section {
4    $w: null, 10px;
5    width: $w;
6}
7<===> output.css
8section {
9  width: 10px;
10}
11