The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
@function foo($x, $y, $z) {
  @while $x < $y {
    $z: transform($z);
    @return $z;
  }
}

@function bar($x) {
  @if $x {
    @return YES;
  }
}

div {
  answer: bar(true);
  flanswer: fudge(mux+flux) + mudge(a/b);
}