Your IP : 216.73.216.95


Current Path : /var/test/www/storage2/vendor/leafo/scssphp/tests/inputs/
Upload File :
Current File : /var/test/www/storage2/vendor/leafo/scssphp/tests/inputs/keyword_args.scss

// mixins

@mixin hello($a: one, $b:two, $c:three, $d: four) {
    out: $a $b $c $d;
}

pre {
    @include hello(alpha, $d: palace, $b: fort);
}


// functions

@function cool($a, $b) {
    @return $a - $b;
}

div {
    hello: cool($b: 5, $a: 10);
    world: cool(5, 10);
}