RosettaCodeData/Task/Call-a-function/Clojure/call-a-function-2.clj

6 lines
153 B
Clojure

(defn total-cost [item-price num-items]
"Returns the total price to buy the given number of items"
(* item-price num-items))
(total-cost 1 5); => 5