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
;; (op parameter-1parameter-2 ….) | |
(* 1 2 3) | |
(+ 5 9 7) | |
(/ 4 5) | |
(- 2 3 4) | |
(map inc [1 2 3 4 5 6]) | |
(defn some-function [times parameter] |
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
# Gradle files | |
/gradle.properties | |
.gradle/ | |
# Generated files | |
build/ | |
gen/ | |
models-gen/ | |
bin/ | |
out/ |
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
## OS X files | |
.DS_Store | |
.DS_Store? | |
.Trashes | |
.Spotlight-V100 | |
*.swp | |
## Xcode build files | |
DerivedData/ | |
build/ |