├── .gitignore ├── LICENSE ├── README.md ├── impala ├── project.clj ├── src └── impala │ ├── core.clj │ ├── lib.clj │ └── main.clj └── test └── impala ├── test.clj └── test.imp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divs1210/Impala/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divs1210/Impala/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divs1210/Impala/HEAD/README.md -------------------------------------------------------------------------------- /impala: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | java -jar target/impala-0.1.0-SNAPSHOT-standalone.jar $1 3 | -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divs1210/Impala/HEAD/project.clj -------------------------------------------------------------------------------- /src/impala/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divs1210/Impala/HEAD/src/impala/core.clj -------------------------------------------------------------------------------- /src/impala/lib.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divs1210/Impala/HEAD/src/impala/lib.clj -------------------------------------------------------------------------------- /src/impala/main.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divs1210/Impala/HEAD/src/impala/main.clj -------------------------------------------------------------------------------- /test/impala/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divs1210/Impala/HEAD/test/impala/test.clj -------------------------------------------------------------------------------- /test/impala/test.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divs1210/Impala/HEAD/test/impala/test.imp --------------------------------------------------------------------------------