-
-
Save chriseppstein/3008544 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$test:(); | |
@for $i from 0 through 5 { | |
$test: append($test, a b, comma); | |
} | |
@debug $test; | |
@debug nth($test, 1); | |
@debug nth(nth($test, 1),2); |
Snugug
commented
Jun 28, 2012
Interesting, is playing around with my question here?
https://gist.github.com/3170386
the output:
DEBUG: a b, a b, a b, a b, a b, a b
DEBUG: a b
DEBUG: b
o(╯□╰)o
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment