Skip to content

Instantly share code, notes, and snippets.

@stowball
Created May 23, 2015 07:42
Show Gist options
  • Select an option

  • Save stowball/e60ec25e9d7734b7bb49 to your computer and use it in GitHub Desktop.

Select an option

Save stowball/e60ec25e9d7734b7bb49 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
$_map: (
0: 0
);
@for $i from 1 through 5 {
$_map: map-merge($_map, ($i: $i));
}
a {
content: "#{inspect($_map)}";
}
// This breaks in Ruby Sass
b {
content: "#{$_map}";
}
a {
content: "(0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5)";
}
b {
content: "(0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5)";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment