There are several ways with lein repl:
- Very slow:
cat your_file.clj | lein repl - Slow:
echo '(load-file "your_file.clj")' | lein repl - Fast:
lein repl(load-file "your_file.clj")- repeat
2
There are several ways with lein repl:
cat your_file.clj | lein replecho '(load-file "your_file.clj")' | lein repllein repl (load-file "your_file.clj") 2