fork download
  1. (ns foo)
  2.  
  3. (defn f []
  4. (println "(f)"))
  5.  
  6. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  7.  
  8. (ns bar
  9. (:require foo))
  10.  
  11. (foo/f)
  12.  
Success #stdin #stdout 1.38s 389120KB
stdin
Standard input is empty
stdout
(f)