website: packaging-tutorial: Add links to the cookbook's version.

* website/posts/packaging-tutorial.md: Add links to the cookbook.
This commit is contained in:
Ludovic Courtès 2023-08-08 16:28:26 +02:00
parent 8601985100
commit 26ffbf2821
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 7 additions and 0 deletions

View File

@ -34,6 +34,9 @@ It does not assume much knowledge of the Guix system nor of the Lisp language.
The reader is only expected to be familiar with the command line and to have some
basic programming knowledge.
> **Update**: Check out [the
> Cookbook](https://guix.gnu.org/cookbook/en/html_node/Packaging-Tutorial.html)
> for an up-to-date and translated version of this tutorial!
# A "Hello World" package
@ -213,6 +216,10 @@ skills.
Since an extensive Lisp course is very much out of the scope of this tutorial,
we will only cover some basics here.
> **Update**: Check out [the
> Cookbook](https://guix.gnu.org/cookbook/en/html_node/A-Scheme-Crash-Course.html)
> for an up-to-date and translated version of this introduction to Scheme.
Guix uses the Guile implementation of Scheme. To start playing with the
language, install it with `guix package --install guile` and start a [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop) by
running `guile` from the command line.