RosettaCodeData/Task/Call-a-function/Clojure/call-a-function-2.clj
2023-07-01 13:44:08 -04:00

5 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