It isn’t in the documentation because it simply isn’t implemented. What you want to do can be done with the @while directive.
$i: 1;
@while $i < 100 {
// do stuff
$i: $i + 2;
}
It isn’t in the documentation because it simply isn’t implemented. What you want to do can be done with the @while directive.
$i: 1;
@while $i < 100 {
// do stuff
$i: $i + 2;
}