-
Notifications
You must be signed in to change notification settings - Fork 4
arithmetic
Turtle Kitty edited this page Aug 9, 2015
·
1 revision
Addition.
(+ 1 2 3 4 5) -> 15Subtraction.
(- 7 5 2) -> 0Multiplication.
(* 2 3) -> 6Division.
(/ 15 3) -> 5
(/ 15 2) -> 15/2
(/ 15 2.0) -> 7.5Integer division.
(div 15 3) -> 5
(div 15 2.0) -> 7.0
(div 15 2) -> 7
(div -15 2) -> -7Integer remainder.
(rem 15 2) -> 1
(rem -15 2) -> -1Modulo.
(mod 15 2) -> 1
(mod -15 2) -> 1