scss: override variable with variable.

Override one variable with other variable.

HTML

<div>asdfiusadf iuhas dfiouha sdifuosuiadfo</div>

SCSS

$r: red;
$g : green !default;
$g: $r;
$g: blue;
div {
  color: $g;
}