Skip to content

Commit

Permalink
Initial folder structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
akarpovskii committed Nov 30, 2019
1 parent 7f67444 commit 97844ee
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@

# Created by https://www.gitignore.io/api/clojure,intellij,leiningen
# Edit at https://www.gitignore.io/?templates=clojure,intellij,leiningen

### Clojure ###
pom.xml
pom.xml.asc
*.jar
*.class
/lib/
/classes/
/target/
/checkouts/
.lein-deps-sum
.lein-repl-history
.lein-plugins/
.lein-failures
.nrepl-port
.cpcache/

### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

.idea/*

# Gradle and Maven with auto-import
*.iml
*.ipr

# CMake
cmake-build-*/

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

### Leiningen ###

# End of https://www.gitignore.io/api/clojure,intellij,leiningen
3 changes: 3 additions & 0 deletions doc/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Introduction to anseml

TODO: write [great documentation](http://jacobian.org/writing/what-to-write/)
5 changes: 5 additions & 0 deletions project.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(defproject anseml "0.1.0-SNAPSHOT"
:description "ANother S-Expressions Markup Language"
:license {:name "MIT License"}
:dependencies [[org.clojure/clojure "1.10.0"]]
:repl-options {:init-ns anseml.core})
6 changes: 6 additions & 0 deletions src/anseml/core.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
(ns anseml.core)

(defn foo
"I don't do a whole lot."
[x]
(println x "Hello, World!"))
7 changes: 7 additions & 0 deletions test/anseml/core_test.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(ns anseml.core-test
(:require [clojure.test :refer :all]
[anseml.core :refer :all]))

(deftest a-test
(testing "FIXME, I fail."
(is (= 0 1))))

0 comments on commit 97844ee

Please sign in to comment.