run -s2 '(mod noargs (defun map (func items) (if items (c (a func (list (f items))) (map func (r items))) ()) ) (map (lambda (VAL) (+ VAL 1)) (list 100 200 300)))'
(q 101 201 301)
