Functions: Basics
Code
(ns functions-basic.core)
(defn print-hello-world []
(println "Hello world"))
(print-hello-world)
;; => nil
(defn get-hello [who]
(str "Hello " who "!"))
(get-hello "world")
;; => "Hello world!"
(defn add [x y]
(+ x y))
(add 1 2)
;; => 3
(defn print-hello [who]
(println (get-hello who)))
(print-hello "world")
;; => nil
Explanation
Here is an explanation of the given Clojure code:
Here is a comprehensive explanation of the Clojure code:
- Namespace definition:
(ns functions-basic.core)
. This defines the namespace for the current file.ns
stands for namespace, andfunctions-basic.core
is the name of the namespace. A namespace is a container that allows you to group related functions and variables together, and it helps to avoid name clashes in large projects. - Function definition:
(defn print-hello-world [] (println "Hello world"))
. This declares a function namedprint-hello-world
withdefn
. The function takes no arguments, as indicated by the empty vector[]
, and prints the “Hello world” string to the console. - Function call:
(print-hello-world)
. This is a call to theprint-hello-world
function. It will print “Hello world” to the console. The comment;; => nil
indicates that the function returnsnil
- Clojure functions by default return the value of their last statement, and theprintln
function returnsnil
. - String concatenation function:
(defn get-hello [who] (str "Hello " who "!"))
. This defines a function namedget-hello
that takes a single argumentwho
and returns a string that starts with “Hello “, appends the value ofwho
, and then adds “!” at the end. Thestr
function is used to concatenate strings. - Function call with parameter:
(get-hello "world")
. This is a call to theget-hello
function with the argument “world”. The function returns the string “Hello world!”. - Addition function:
(defn add [x y] (+ x y))
. This defines a function namedadd
that takes two argumentsx
andy
, and returns their sum. The+
operator is used to add numbers in Clojure. - Function call with parameters:
(add 1 2)
. This is a call to theadd
function with the arguments 1 and 2. The function returns the sum, which is 3. - Function definition with function call:
(defn print-hello [who] (println (get-hello who)))
. This defines a function namedprint-hello
that takes a single argumentwho
. Inside this function, it first calls theget-hello
function with thewho
argument and then prints the returned string. - Nested function call:
(print-hello "world")
. This is a call to theprint-hello
function with the argument “world”. This function calls theget-hello
function with “world” as an argument, concatenates the return with “Hello " and “!”, then prints the result. Again, the comment;; => nil
shows theprintln
function’s return value isnil
.
This code provides examples of defining and calling functions in Clojure, including functions with no arguments, functions with arguments, and functions that call other functions. It also demonstrates string concatenation and addition.
Last updated on