I'd like to set a SASS variable using inline IF's similar to how its done in PHP or Javascript
Is something like this possible?
$myVar: ($something >= 10 ? true : false);
I'm aware of @if control directives but I want to use a shorter inline syntax.