Skip to content

Commit f8b23a9

Browse files
authored
Create 13.clj
1 parent 35b84a3 commit f8b23a9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

13.clj

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
;; Title: Sequences: rest
2+
;; Link: http://www.4clojure.com/problem/13
3+
;; Description: The rest function will return all the items of a sequence except the first.
4+
5+
;; QUESTION/TEST CODE
6+
7+
; (= __ (rest [10 20 30 40]))
8+
9+
;; SOLUTION CODE
10+
11+
[20 30 40]

0 commit comments

Comments
 (0)