fork(4) download
  1. (def x 5)
  2. (println x)
  3.  
  4. (let [x 2]
  5. (println x))
  6.  
  7. (println x)
Success #stdin #stdout 1.73s 335552KB
stdin
Standard input is empty
stdout
5
2
5