less than 1 minute read

Notes

Installs cljrs (needs Rust to be installed first)

$ cargo install cljrs

Start repl

$ cljrs repl

Run a .cljrs file

$ cljrs run somefile.cljrs

Start nrepl

$ cljrs nrepl

Clojurust project structure

myproj/
├── cljrs.edn
└── src/
    └── myproj/
        └── core.cljrs

Start nrepl

$ cljrs nrepl

Compile project

$ cljrs compile --src-path ./src --main cljrs-project.core --out ./target/hello_cljrs_project

Code

Updated: