.box{
$size : 100px;
position: fixed;
top: $size;
.item{
$size:200px;
width: $size;
height: $size;
transform: translate($size);
background-color: orange;
}
}
이렇게 지역변수로 쓸 수 있음.
또, 재선언도 가능함.
참고로 얘는 호이스팅이 안됨.