How can I run a .clj Clojure file I created?

前端 未结 8 1779
夕颜
夕颜 2021-01-30 08:19

I\'ve installed Geany on my Linux Mint machine and I wrote some simple code. Just a small hello world to get started with the language.

Now I\'d like to run it and see w

8条回答
  •  天涯浪人
    2021-01-30 08:47

    if you just want to execute a single file, how about piping it to the repl like:

    cat $PATH_TO_FILE | lein repl

提交回复
热议问题