├── .gitignore ├── README.md ├── project.clj ├── resources ├── dojo.clj └── koans.clj ├── script ├── bundle.sh ├── repl ├── repl.bat ├── run ├── run.bat ├── run.clj ├── test ├── test.bat └── test.clj └── src └── koans └── example_koan.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/project.clj -------------------------------------------------------------------------------- /resources/dojo.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/resources/dojo.clj -------------------------------------------------------------------------------- /resources/koans.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/resources/koans.clj -------------------------------------------------------------------------------- /script/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/script/bundle.sh -------------------------------------------------------------------------------- /script/repl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/script/repl -------------------------------------------------------------------------------- /script/repl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/script/repl.bat -------------------------------------------------------------------------------- /script/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/script/run -------------------------------------------------------------------------------- /script/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/script/run.bat -------------------------------------------------------------------------------- /script/run.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/script/run.clj -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/script/test -------------------------------------------------------------------------------- /script/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/script/test.bat -------------------------------------------------------------------------------- /script/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/script/test.clj -------------------------------------------------------------------------------- /src/koans/example_koan.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sritchie/core.match-koans/HEAD/src/koans/example_koan.clj --------------------------------------------------------------------------------