We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 784cee0 commit 598fbcbCopy full SHA for 598fbcb
16.clj
@@ -0,0 +1,14 @@
1
+;; Title: Hello World
2
+;; Link: http://www.4clojure.com/problem/16
3
+;; Description: Write a function which returns a personalized greeting.
4
+
5
+;; QUESTION/TEST CODE
6
7
+;; (= (__ "Dave") "Hello, Dave!")
8
+;; (= (__ "Jenn") "Hello, Jenn!")
9
+;; (= (__ "Rhea") "Hello, Rhea!")
10
11
12
+;; SOLUTION CODE
13
14
+#(format "Hello, %s!" %)
0 commit comments