summaryrefslogtreecommitdiff
path: root/scss/tests/files/from-sassc/spec-scss-while_directive.scss
blob: 5058186ea0f9ee29e0c8eb6f4a7587ce034438b3 (plain)
1
2
3
4
5
6
7
8
$i: 1;

.foo {
  @while $i != 5 {
    a: $i;
    $i: $i + 1;
  }
}