Improvements

This commit is contained in:
Julian Ospald 2022-04-02 23:31:35 +02:00
parent e74fb45680
commit 1680c5c448
Signed by: hasufell
GPG Key ID: 3786C5262ECB4A3F
3 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# User Guide
`ghcup --help` is your friend.
This is a more in-depth guide specific to GHCup. `ghcup --help` is your friend.
## Basic usage

View File

@ -17,6 +17,7 @@ hide:
<div class="text-center main-buttons">
<a href="install/" class="btn btn-primary" role="button">Getting Started</a>
<a href="steps/" class="btn btn-primary" role="button">First steps</a>
<a href="guide/" class="btn btn-primary" role="button">User Guide</a>
</div>

View File

@ -4,7 +4,6 @@ In this guide we'll take a look at a few core tools that are installed
with the Haskell toolchain, namely, `ghc`, `runghc` and `ghci`.
These tools can be used to compile, interpret or explore Haskell programs.
First, let's start by opening your system's command line interface
and running `ghc --version` to make sure we have successfully
installed a Haskell toolchain:
@ -323,6 +322,12 @@ see the [Cabal user guide](https://cabal.readthedocs.io/en/stable/getting-starte
# Where to go from here
<div class="text-center main-buttons">
<a href="https://hackage.haskell.org/" class="btn btn-primary" role="button">Discover Haskell packages</a>
<a href="https://hackage.haskell.org/package/base" class="btn btn-primary" role="button">The standard library</a>
<a href="https://haskell-language-server.readthedocs.io/en/stable/installation.html" class="btn btn-primary" role="button">Editor setup with HLS</a>
</div>
## How to learn Haskell proper
To learn Haskell, try any of those: