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

6 lines
153 B
Clojure
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(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