Skip to content

Commit 598fbcb

Browse files
authored
Create 16.clj
1 parent 784cee0 commit 598fbcb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

16.clj

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)