RosettaCodeData/Task/Arithmetic-Integer/Sass-SCSS/arithmetic-integer-1.sass

4 lines
98 B
Sass

@function arithmetic($a,$b) {
@return $a + $b, $a - $b, $a * $b, ($a - ($a % $b))/$b, $a % $b;
}