fork download
  1. (define (func x)
  2. (display x) (newline)
  3. (let ([x (+ x 1)])
  4. (display x)))
  5.  
  6. (func 42)
Success #stdin #stdout 0s 18080KB
stdin
Standard input is empty
stdout
42
43