<===> input.scss
$baz: 12;
@media bar#{$baz} {a {b: c}}

<===> output.css
@media bar12 {
  a {
    b: c;
  }
}