Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 662 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 662 Bytes

Bowlarama

Bowling scores for awesome bowlers.

This is the Elixir version of Bowlarama

Rules

See project rules

Debugging in iex

Load Elixir interactive console with the application modules

$ iex -S mix 

Run project in iex console:

 iex(1)> Bowlarama.score_sheet('./fixtures/scores.txt')

 iex(1)> Bowlarama.score_sheet('./fixtures/scores_normal.txt')

 iex(1)> Bowlarama.score_sheet('./fixtures/scores_with_foul.txt')

 iex(1)> Bowlarama.score_sheet('./fixtures/scores_invalid.txt')

After doing code changes, reload in console with recompile instruction.