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 repl
echo '(load-file "your_file.clj")' | lein repl
lein repl
(load-file "your_file.clj")
2