1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 23:28:02 +00:00
Files
til/clojure/load-a-file-into-the-repl.md
2016-01-13 21:27:24 -06:00

381 B

Load A File Into The REPL

You can quickly load a file into a REPL session using the load-file function. You can specify an absolute or relative path and it will

sequentially read and evaluate the set of forms contained in the file.

(load-file "path/to/file.clj")

See the load-file docs for more details.