<===> input.sass
@mixin foo($foo:red)
color: $foo
.foo
@include foo(green)
<===> output.css
.foo {
color: green;
}
<===> input.sass
@mixin foo($foo:red)
color: $foo
.foo
@include foo(green)
<===> output.css
.foo {
color: green;
}