What are Clojure's Naming Conventions?
问题 Can anyone explain or point me to where I can find clojure's naming conventions for: File names Functions (From what I understand, function names are simply dash separated values) Variables 回答1: You might want to look at the Clojure library coding standards on the developer Wiki - this is probably the most comprehensive list that I've seen. To your specific points: File names are lowercase, and stored in a directory structure to match the namespace, and end in .clj e.g. "my/special/namespace