fork download
  1. ; http://stackoverflow.com/questions/37228957
  2.  
  3. (define (f xs n)
  4. (map (lambda (x) (+ x n))
  5. xs))
  6.  
  7. (display (f '(1 3 5) 7))
Success #stdin #stdout 0.03s 8616KB
stdin
Standard input is empty
stdout
(8 10 12)