diff --git a/README.md b/README.md index 2e14e8b..e23ea77 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ smart people at [Hashrocket](http://hashrocket.com/). - [Evaluate One Liners With lein-exec](clojure/evaluate-one-liners-with-lein-exec.md) - [Expanding Macros](clojure/expanding-macros.md) - [Get The Value Of An Environment Variable](clojure/get-the-value-of-an-environment-variable.md) +- [Load A File Into The REPL](clojure/load-a-file-into-the-repl.md) - [Mapping With An Index](clojure/mapping-with-an-index.md) - [Open JavaDocs](clojure/open-javadocs.md) - [Pretty Print The Last Thing](clojure/pretty-print-the-last-thing.md) diff --git a/clojure/load-a-file-into-the-repl.md b/clojure/load-a-file-into-the-repl.md new file mode 100644 index 0000000..fe048b8 --- /dev/null +++ b/clojure/load-a-file-into-the-repl.md @@ -0,0 +1,13 @@ +# 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. + +```clojure +(load-file "path/to/file.clj") +``` + +See the [`load-file` docs](https://clojuredocs.org/clojure.core/load-file) +for more details.