Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rewinfrey/anagramer
A simple Clojure app to find anagrams
https://github.com/rewinfrey/anagramer
Last synced: about 1 month ago
JSON representation
A simple Clojure app to find anagrams
- Host: GitHub
- URL: https://github.com/rewinfrey/anagramer
- Owner: rewinfrey
- Created: 2014-01-13T20:10:10.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-16T15:09:55.000Z (almost 11 years ago)
- Last Synced: 2024-04-15T14:00:32.794Z (7 months ago)
- Language: Clojure
- Size: 883 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Anagramer
Simple anagram finder in Clojure. Uses OSx word list found in `/usr/share/dict/words`.
### Usage
Prepare the repo:
```
$ git clone [email protected]:rewinfrey/anagramer.git
$ cd anagramer
```Run the anagramer:
```
$ ./anagramer
```Special Notes:
1. The first time anagramer is executed it will build an executable jar using your system's Java binary
2. This requires [Leiningen](http://leiningen.org/) in order to build the executable jarExample:
```
$ ./anagramer teaAnagram results: [ate eat eta tae tea]
```
### License
Copyright 2014 Rick Winfrey
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.