Skip to content

Instantly share code, notes, and snippets.

@jamiebuilds
Created November 11, 2013 02:49
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 jamiebuilds/7407010 to your computer and use it in GitHub Desktop.
Save jamiebuilds/7407010 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
$list-1: null;
$list-2: ();
@each $n in (1, 2, 3, 4) {
$list-1: append($list-1, $n, comma);
$list-2: append($list-2, $n, comma);
}
building lists programmatically {
list-1: $list-1 == (1, 2, 3, 4);
list-2: $list-2 == (1, 2, 3, 4);
}
building lists programmatically {
list-1: false;
list-2: true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment