@function testfunc($pseudo: null) {
  $output: if($pseudo, "green", "red");
  @return $output;
}

body {
  background-color: testfunc();
}
