DEBSOURCES
Skip Quicknav
sources / node-node-sass / 9.0.0%2Bgit20240131.6081731%2Bdfsg-3 / sass-spec / spec / scss / for_in_functions / input.scss
12345678910111213
@function foo() { $limit: 10; $y: 0; @for $x from 1 through $limit { $limit: 4; $y: $y + $x; } @return $y; } div { width: foo(); }