fork download
  1. ; http://stackoverflow.com/questions/37228957/
  2.  
  3. (define (m n) (- n))
  4.  
  5. (display (map m '(1 -2 3)))
Success #stdin #stdout 0.02s 8656KB
stdin
Standard input is empty
stdout
(-1 2 -3)