RosettaCodeData/Task/Arithmetic-Integer/Sass-SCSS/arithmetic-integer-1.sass
2023-07-01 13:44:08 -04:00

3 lines
98 B
Sass

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