Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/p-adams/elixir-hangman
elixir implementation of hangman
https://github.com/p-adams/elixir-hangman
Last synced: 2 days ago
JSON representation
elixir implementation of hangman
- Host: GitHub
- URL: https://github.com/p-adams/elixir-hangman
- Owner: p-adams
- Created: 2016-12-17T04:05:06.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-17T18:41:13.000Z (about 8 years ago)
- Last Synced: 2024-11-07T22:43:37.573Z (about 2 months ago)
- Language: Elixir
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hangman
learning elixir by building basic hangman console application
## InstallationIf [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add `hangman` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:hangman, "~> 0.1.0"}]
end
```2. Ensure `hangman` is started before your application:
```elixir
def application do
[applications: [:hangman]]
end
```