fork(1) download
  1. (define (abs x) (or (and (< x 0) (- x)) (and (= x 0) 0) (and (> x 0) x) ((gensym))))(display (abs -42))
Success #stdin #stdout 0.01s 7772KB
stdin
Standard input is empty
stdout
42