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

4 lines
98 B
Sass
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
@function arithmetic($a,$b) {
@return $a + $b, $a - $b, $a * $b, ($a - ($a % $b))/$b, $a % $b;
}