Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# Hangman

learning elixir by building basic hangman console application
## Installation

If [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
```