7 lines
150 B
Scheme
7 lines
150 B
Scheme
(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
|