]> git.rkrishnan.org Git - sicp.git/commitdiff
solution to 2.26
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Sat, 10 Jul 2010 06:56:14 +0000 (12:26 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Sat, 10 Jul 2010 06:56:14 +0000 (12:26 +0530)
src/sicp/ex2_26.clj [new file with mode: 0644]

diff --git a/src/sicp/ex2_26.clj b/src/sicp/ex2_26.clj
new file mode 100644 (file)
index 0000000..0825ed8
--- /dev/null
@@ -0,0 +1,15 @@
+(ns sicp.ex2_26)
+
+(def x (list 1 2 3))
+(def y (list 4 5 6))
+
+;; (append x y) will produce (1 2 3 4 5 6)
+;; (cons x y) will produce ((1 2 3) 4 5 6)
+;; (lis x y) => ((1 2 3) (4 5 6))
+
+(concat x y)
+;;=> (1 2 3 4 5 6)
+(cons x y)
+;;=> ((1 2 3) 4 5 6)
+(list x y)
+;;=> ((1 2 3) (4 5 6))
\ No newline at end of file