Skip to content

Instantly share code, notes, and snippets.

@P233
Created July 4, 2014 16:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save P233/47ef0a768698e0ba1e70 to your computer and use it in GitHub Desktop.
Save P233/47ef0a768698e0ba1e70 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.9)
// Compass (v1.0.0.alpha.20)
// ----
$var: null;
@for $i from 1 through 5 {
$var: $var, $i $i;
}
body {
list: $var;
@each $item in $var {
item: $item;
}
}
// Expecting to output:
// body {
// list: 1 1, 2 2, 3 3, 4 4, 5 5;
// item: 1 1;
// item: 2 2;
// item: 3 3;
// item: 4 4;
// item: 5 5;
// }
body {
list: 1 1, 2 2, 3 3, 4 4, 5 5;
item: 1 1, 2 2, 3 3, 4 4;
item: 5 5;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment