Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions index.html
Original file line numberDiff line numberDiff line change
Expand Up@@ -151,15 +151,15 @@ <h4>A growing ecosystem</h4>
<div class="entry-summary">
<p>Elixir ships with a great set of tools to ease development. <a href="https://hexdocs.pm/mix/">Mix is a build tool</a> that allows you to easily create projects, manage tasks, run tests and more:</p>

{% highlight text %}
<pre><code>
$ mix new my_app
$ cd my_app
$ mix test
.
<span style="color:#919D41">.</span>

Finished in 0.04 seconds (0.04s on load, 0.00s on tests)
1 tests, 0 failures
{% endhighlight %}
<span style="color:#919D41">1 test, 0 failures</span>
</code></pre>

<p>Mix is also able to manage dependencies and integrates with the <a href="https://hex.pm/">Hex package manager</a>, which performs dependency resolution, fetches remote packages, and <a href="https://hexdocs.pm/">hosts documentation</a> for the whole ecosystem.</p>
</div>
Expand Down