Online Clojure Compiler
										
										
(ns clojure.examples.hello
(:gen-class))

(defn sum-of-numbers [x y]
(println (format "x + y = %d" (+ x y))))

(sum-of-numbers 25 40)
                                
                                

Output Results

										
x + y = 65