Skip to content

Commit

Permalink
Add some more stubs files for exercises
Browse files Browse the repository at this point in the history
Hello world was already added in exercism#122, add to next 4 exercises
(to make it 5)

Fixes exercism#121
  • Loading branch information
tejasbubane committed Sep 19, 2016
1 parent 513b13b commit 87efbb0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions exercises/anagram/src/anagram.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(ns anagram)

(defn anagrams-for [] ;; <- arglist goes here
;; your code goes here
)
5 changes: 5 additions & 0 deletions exercises/bob/src/bob.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(ns bob)

(defn response-for [] ;; <- arglist goes here
;; your code goes here
)
5 changes: 5 additions & 0 deletions exercises/rna-transcription/src/rna_transcription.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(ns rna-transcription)

(defn to-rna [] ;; <- arglist goes here
;; your code goes here
)
5 changes: 5 additions & 0 deletions exercises/word-count/src/word_count.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(ns word-count)

(defn word-count [] ;; <- arglist goes here
;; your code goes here
)

0 comments on commit 87efbb0

Please sign in to comment.