9 lines
244 B
Racket
9 lines
244 B
Racket
(exp 1) ; e
|
|
pi ; pi
|
|
(sqrt x) ; square root
|
|
(log x) ; natural logarithm
|
|
(exp x) ; exponential
|
|
(abs x) ; absolute value
|
|
(floor x) ; floor
|
|
(ceiling x) ; ceiling
|
|
(expt x y) ; power
|