Created
January 26, 2015 02:22
-
-
Save zackmdavis/976faa84ae251522c5df to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(ns xrosslexior.core | |
[xrosslexior.letter-tree :refer :all]) | |
; [...] | |
This file contains hidden or 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
(ns xrosslexior.letter-tree) | |
; [...] |
This file contains hidden or 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
(defproject xrosslexior "0.0-dev" | |
:description "generate crossword puzzles, maybe" | |
:url "http://github.com/zackmdavis/xrosslexior" | |
:license {:name "MIT License" | |
:url "http://opensource.org/licenses/MIT"} | |
:main xrosslexior.core | |
:dependencies [[org.clojure/clojure "1.6.0"]] | |
:plugins [[com.jakemccrary/lein-test-refresh "0.5.0"]]) |
This file contains hidden or 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
zmd@ExpectedReturn:~/Code/xrosslexior$ lein repl | |
#<CompilerException java.lang.RuntimeException: No such var: clojure.core/xrosslexior.letter-tree, compiling:(xrosslexior/core.clj:1:1)> | |
nREPL server started on port 43034 on host 127.0.0.1 - nrepl://127.0.0.1:43034 | |
REPL-y 0.3.1 | |
Clojure 1.6.0 | |
Docs: (doc function-name-here) | |
(find-doc "part-of-name-here") | |
Source: (source function-name-here) | |
Javadoc: (javadoc java-object-or-class-here) | |
Exit: Control+D or (exit) or (quit) | |
Results: Stored in vars *1, *2, *3, an exception in *e | |
xrosslexior.core=> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment