Created
October 28, 2016 22:10
-
-
Save hlship/ffc8f21009f62a76e654aba3a1d749b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> 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