From 0f7320f946827791778e6181ddc62cfcf40887cf Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Mon, 19 Sep 2011 11:27:24 -0400 Subject: [PATCH] need to test map --- tests/more-tests/map.rkt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 tests/more-tests/map.rkt diff --git a/tests/more-tests/map.rkt b/tests/more-tests/map.rkt new file mode 100644 index 0000000..1c1552e --- /dev/null +++ b/tests/more-tests/map.rkt @@ -0,0 +1,2 @@ +#lang planet dyoo/whalesong +(map (lambda (x y) (+ x y)) (list 1 2 3) (list 4 5 6))