https://github.com/p-adams/elixir-hangman
elixir implementation of hangman
https://github.com/p-adams/elixir-hangman
Last synced: 4 months 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-17T18:41:13.000Z (over 8 years ago)
- Last Synced: 2024-12-29T20:26:27.546Z (6 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
```