I am working through the Programming Elixir book.
I am experimenting with a mix of OSX and Windows.
Intelij IDEA does provide a free ide that works for Elixir
However on windows some of the run commands need to be changed
mix run -e ‘Issues.CLI.run([“-h”])’
needs to be replaced with:
mix run -e “Issues.CLI.run([‘-h’])”