6 lines
125 B
Clojure
6 lines
125 B
Clojure
(ns user (:require [clojure.contrib.math :as math]))
|
|
(math/sqrt x)
|
|
(math/abs x)
|
|
(math/floor x)
|
|
(math/ceil x)
|
|
(math/expt x y)
|