Skip to content

Instantly share code, notes, and snippets.

@hlship
Created October 28, 2016 22:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlship/ffc8f21009f62a76e654aba3a1d749b8 to your computer and use it in GitHub Desktop.
Save hlship/ffc8f21009f62a76e654aba3a1d749b8 to your computer and use it in GitHub Desktop.
> boot repl
nREPL server started on port 62614 on host 127.0.0.1 - nrepl://127.0.0.1:62614
REPL-y 0.3.7, nREPL 0.2.12
Clojure 1.9.0-alpha10
Java HotSpot(TM) 64-Bit Server VM 1.8.0_74-b02
Exit: Control+D or (exit) or (quit)
Commands: (user/help)
Docs: (doc function-name-here)
(find-doc "part-of-name-here")
Find by Name: (find-name "part-of-name-here")
Source: (source function-name-here)
Javadoc: (javadoc java-object-or-class-here)
Examples from clojuredocs.org: [clojuredocs or cdoc]
(user/clojuredocs name-here)
(user/clojuredocs "ns-here" "name-here")
boot.user=> (boot (hello))
Hello, Howard
nil
boot.user=> (boot (hello "-n" "Clojarians"))
Hello, Clojarians
nil
boot.user=> (boot (hello :name "Booters"))
Hello, Booters
nil
boot.user=> (boot "hello" "-n" "Medium" "--" "hello" "-g" "Welcome")
Hello, Medium
Welcome, Howard
nil
boot.user=>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment