Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,3 @@
|
|||
@function arithmetic($a,$b) {
|
||||
@return $a + $b, $a - $b, $a * $b, ($a - ($a % $b))/$b, $a % $b;
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
nth(arithmetic(10,3),1);
|
||||
23
Task/Arithmetic-Integer/Sass-SCSS/arithmetic-integer-3.sass
Normal file
23
Task/Arithmetic-Integer/Sass-SCSS/arithmetic-integer-3.sass
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
@function sum($a,$b) {
|
||||
@return $a + $b;
|
||||
}
|
||||
|
||||
@function difference($a,$b) {
|
||||
@return $a - $b;
|
||||
}
|
||||
|
||||
@function product($a,$b) {
|
||||
@return $a * $b;
|
||||
}
|
||||
|
||||
@function integer-division($a,$b) {
|
||||
@return ($a - ($a % $b))/$b;
|
||||
}
|
||||
|
||||
@function remainder($a,$b) {
|
||||
@return $a % $b;
|
||||
}
|
||||
|
||||
@function float-division($a,$b) {
|
||||
@return $a / $b;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue