fork(1) download
  1. (define a 10)
  2.  
  3. (define (test)
  4. (display a))
  5.  
  6. (let ((a 1))
  7. (test))
  8.  
Success #stdin #stdout 0.02s 4132KB
stdin
Standard input is empty
stdout
10