summaryrefslogtreecommitdiffstats
path: root/tests/012/lazy.tl
blob: be04412a2020ae64dea4fca4d717439568466bf0 (plain)
1
2
3
4
5
6
(load "../common")

(test [mapcar* list nil] nil)
(test [mapcar* list '(1)] ((1)))
(test [mapcar* list '(1 2 3)] ((1) (2) (3)))
(test [mapcar* list '(1 2 3) '(a b c)] ((1 a) (2 b) (3 c)))