Generated by SassMeister.com.
<h1>Hello world this is Sass</h1>
body {
background-color: blue;
}
h1 {
color: white;
}
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$color: blue;
body {
background-color: $color;
}
h1 {
color: white;
}
<h1>Hello world this is Sass</h1>