Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.shinegis.mu
/
htdocs
/
functions
/
scssphp
/
tests
/
inputs
/
/srv/data/web/vhosts/www.shinegis.mu/htdocs/functions/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); }